NIRAV PAREKH
NIRAV PAREKH

Reputation: 137

Laravel 5.5.* directory structure different

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

Answers (1)

Viktor
Viktor

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

Related Questions