Laravel 6 / 7 make auth
Why laravel make:auth no longer exist???
Start from begin, since version 6 a lot change.
Like so, now to create a new project we do via composer
# laravel new appName
# composer require laravel/ui
So starting from this change, we can see that the commands aren’t the same, if you need help you can do
php artisan ui -- help
But this changes aren’t bad because now you can simple type
php artisan ui vue
or
php artisan ui react
to create a simple project with vuejs, save a lot of time
Now the important
The ui:auth Command
php artisan ui:auth
this command will generate all the routes, a ‘HomeController’, a auth views and a app.blade.php file.
Other thing here is that the console command will confirm if overwriting auth files if for some reason you already type a auth command before.
If you need more information please see official Documentation.