Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Michael1111's avatar

Laravel Install

Laravel install with vscode vs: wamp? ... any advice?

0 likes
9 replies
tykus's avatar

Your question makes no sense; VSCode is an editor/IDE, while WAMP is a development environment comprising web server, database and PHP. Can you articulate your actual issue?

1 like
Michael1111's avatar

Sorry - I'm a beginner so I'm likely missing something here... which is what I'm trying to understand. I read about installing Laravel in vscode, and elsewhere about installing it on WAMP server. I was intending to use visual studio with wamp, but trying to understand how Laravel fits into this... IE does Laravel replace one of these? Thanks for your time... I've searched quite a bit for more info on this and haven't yet found an answer to this question.

jlrdw's avatar

Look at the laravel in 30 days video course.

1 like
tykus's avatar

does Laravel replace one of these?

No, you need some version of all of these technologies.

Laravel is the framework upon which you will build your application/project. You need an IDE/editor (VSCode) to create/edit the files in your application; and you need a web server (WAMP) to run your application (i.e. accept incoming web requests, hand off to a server-side scripting process such as PHP-FPM, and ultimately return a Response).

1 like
Michael1111's avatar

Ok - thank you! Do you think it makes a significant difference whether I install Laravel in VSCode, or on WAMP? Could you give any advice on how to determine the best route for this?

tykus's avatar

@Michael1111 You install Laravel to a directory on your filesystem - WAMP probably has a default DocumentRoot configured from where it expects to serve, e.g. C:\wamp64\www.

Finally, you open that directory in your editor (VSCode) to work on your application.

1 like
Michael1111's avatar

Much gratitude to you both for your time and assistance! FYI - I just started the 30 day course.

Michael1111's avatar

Does anyone know how I translate for Windows cmd, the instructions he's giving at 6:15 in Episode 1?

Please or to participate in this conversation.