Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auth resources are missing in laravel

Tags:

php

laravel-5

I want to make use of auth system which comes with the laravel package but the problem is when I make new laravel package using composer i.e composer create-project laravel/laravel project name --prefer-dist it do not install those auth resources which includes (i.e. auth folder inside resources > views) and also I can't find the Services Folder inside app directory. All other things are working fine except this authentication system. What can be the possible problems? Please give me solution I am working with MAMP.

like image 906
Sid Avatar asked Jun 29 '15 06:06

Sid


1 Answers

Taylor Otwell has made it opt-in for Laravel 5.1

You need to run following command after installation

php artisan scaffold:auth

UPDATE

I think this has been answered here

like image 94
pinkal vansia Avatar answered Nov 15 '22 18:11

pinkal vansia