What vscode extensions you used for laravel? What settings you used?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi there,
I personally use the following:
I recently wrote a post on the 8 VS Code extensions that I’m using. You can find it here:
VS Code Extensions for Laravel Developers
Hope that this helps! Regards, Bobby
Hi @sandeepbhambre,
That’s a nice question. Here is the list I usually use alongside an explanation as to why:
Laravel Blade Snippets Laravel Artisan Git PHP Debug PHP Intelephense
Here is why:
Laravel Blade Snippets
Basically, It’s used for syntax highlighting. It comes with Emmet installed in it as well which helps with faster generathing HTML div, p, head, and many more elements. Except the HTML stuff, it can generate Laravel Blade codes. If you want to add a section, you just need to do:
and it generates it for you.
If you learn to use it, it can help you quickly do a lot of stuff.
Laravel Artisan
This extension lets you run Laravel Artisan commands from within Visual Studio Code. This is quite handy again as it saves time. Other features of this extension are :
Git
This one is self-explanatory. Most of the time the projects I work on are saved on git. This extension lets me make commits directly from VS.
PHP Debug and PHP Intelephense
Well, controllers are PHP with more classes in them. Most often than not these two extensions help me sort a typo, problem in my syntax etc. Afterall it’s PHP.
Regards, KFSys