Php artisan make:auth command is not defined

后端 未结 8 1492
耶瑟儿~
耶瑟儿~ 2020-12-04 09:17

I am trying to run this command in laravel 5.2 but it\'s not working.

php artisan make:auth 

and prompts with these statements.

<         


        
8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-04 10:15

    If you using >5 version of laravel then you will use.

    composer require laravel/ui --dev **or** composer require laravel/ui
    

    And then

    php artisan ui:auth
    

提交回复
热议问题