Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which tool for Laravel? [closed]

I'm a newbie PHP developer now casting an eye at frameworks, especially at Laravel 4 since from what I've heard it's one of the fastest to learn and most elegant ones. However, what's still not so clear to me is how, i.e. in which tool/IDE to actually code Laravel projects? Does Laravel include its own or recommend any specific IDE or can (and should) I just continue to use the one I'm already familiar with, which in my case is Netbeans (which provides no native support for Laravel 4 but according plugins, besides many nice features like code completion, integrated Xdebug, versioning...)?

Thanks!

like image 398
bromelio Avatar asked Jun 04 '14 21:06

bromelio


People also ask

Which tool used for Laravel?

Laravel Mix (previously called Laravel Elixir) is a tool that gives you an almost completely managed front-end build process. It provides a clean and flexible API for defining basic Webpack build steps for your Laravel application. The main features: Provides a wide API that corresponds to almost all your needs.

Can Laravel run without xampp?

No, you certainly do not need Xampp or any of that jazz. You simply need to install your flavor of database software on your computer and connect to it through the command line.

Is Laravel an open source?

Laravel is a free and open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern and based on Symfony.

Is Laravel and Xampp same?

Laravel Homestead can be classified as a tool in the "Virtual Machine" category, while XAMPP is grouped under "Web Servers". Laravel Homestead is an open source tool with 3.2K GitHub stars and 1.33K GitHub forks. Here's a link to Laravel Homestead's open source repository on GitHub.


1 Answers

As has been said already, Laravel doesn't require any special tools to use, so any good text editor or IDE will work for you and it's a matter of personal preference. IMHO, PHPStorm is generally a joy to use, and with the Laravel IDE Helper you get autocompletion with the Laravel facades, which can save you a lot of digging in the docs. There's also a Blade syntax highlighter plugin, though that doesn't provide autocomplete. PHPStorm 8 natively supports Blade.

The IDE helper will also work with Netbeans.

Laravel is great at providing everything you need out of the box, and for some projects it provides far more than you need. If you want to keep your project as lightweight as possible and don't mind choosing your own plugins, you could try Aura instead.

like image 106
Dave Morrissey Avatar answered Oct 01 '22 23:10

Dave Morrissey