Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Artisan command "make:auth" is not defined in Laravel 6

I have a problem when creating login/auth in Laravel 6. I typed "make: auth" in the terminal and I get an error "Command" make: auth "appears not defined." Is there a solution for this?

like image 555
af rizal Avatar asked Sep 06 '25 13:09

af rizal


1 Answers

Looks like L6 moves the Auth scaffolding into a separate package.

https://laravel.com/docs/6.0/authentication

Want to get started fast? Install the laravel/ui Composer package and run php artisan ui vue --auth in a fresh Laravel application.

like image 124
ceejayoz Avatar answered Sep 10 '25 01:09

ceejayoz