I am staring to learn about php frameworks and decided to go for laravel. I use netbeans 8.2 IDE to develop my projects and I followed the following instructions:
- Install Composer on your system
- Installer the Composer plugin for Netbeans (It's in the plugins menu, under the PHP category).
- New Project > PHP Application
- Go though the wizard, and setup your project. the last step should be named Composer
- In the last step, search (under Token:) for laravel
- Select laravel/laravel: The Laravel Framework. and move it to the selected frameworks on the right
- Click Finish
So far so good, however, in the new project that is created, I do not see any of the file structure that i think should be there.
What I see: The file structure i see
What i think i should see: The file directory as explained in this: https://laravel.com/docs/5.3/structure
So my question is: Are there any steps I missed or I should do next to get this file structure already set up?
PS: I also know that I need the IDE helper to get autocompletion
Thank you in advance for taking the time to answer my question
artisancli tools. For example : you can start a new laravel project withlaravel new myProject. Using theartisancli utilities will make your life easier.