Home > Blockchain >  Try to use a command to Install login page?
Try to use a command to Install login page?

Time:05-12

I downloaded a project from Github and followed the instruction to open it for login in. I have to use php artisan make:auth but there is an error, how can you help me?

CodePudding user response:

That command is no longer available(Depends on the version ), use this:

composer require laravel/ui
php artisan ui vue --auth
php artisan migrate

source : Laravel

  • Related