Debug School

rakesh kumar
rakesh kumar

Posted on

Php artisan make:auth command is not defined

$ php artisan make:auth


  Command "make:auth" is not defined.

  Did you mean one of these?
      make:cast
      make:channel
      make:command
      make:component
      make:controller
      make:event
      make:exception
      make:factory
      make:job
      make:listener
      make:mail
      make:middleware
      make:migration
Enter fullscreen mode Exit fullscreen mode

Solution

composer require laravel/ui
php artisan ui vue --auth
php artisan migrate
Enter fullscreen mode Exit fullscreen mode

Top comments (0)