Reputation: 137
I just created a laravel project using composer create-project
command from Laravel 5.5 documentation guide.
composer create-project --prefer-dist laravel/laravel blog "5.5.*"
It installed Laravel v5.5.28
When I opened App directory it is missing following directories.
and many things are different then documentation. Please guide me in this.
Upvotes: 0
Views: 170
Reputation: 1702
These folders will show up when you execute make
commands with artisan.
e.g.
php artisan make:mail TestMail
Will generate the Mail folder
Upvotes: 1