我尝试在 Laravel 5.2 中运行此命令,但它不起作用:
php artisan make:auth
并提示这些语句:
[InvalidArgumentException] Command "make:auth" is not defined Did you mean one of these? make:test make:request make:migration make:seeder make:middleware make:controller make:provider make:policy make:event make:console make:job make:lis tener make:model make:command
Laravel 8 更新
laravel/ui
仍然有效,但被视为遗留。考虑使用 Laravel Breeze 或 Laravel Jetstream。Laravel 6 更新
现在 Laravel 6 已发布,您需要安装
laravel/ui代码>.
如果您在项目中使用 React 或 Bootstrap,则可以将
vue
更改为react
或bootstrap
(请参阅 使用 React)。然后您需要执行迁移并编译前端
来源:Laravel 身份验证文档
注意:只有当您想使用脚手架时,才可以使用默认的 User 模型和 Eloquent 身份验证驱动程序。
对于 Laravel >=6
参考:Laravel 身份验证文档
看起来您没有使用 Laravel 5.2,这些是 L5.2 中可用的 make 命令,您缺少的不仅仅是 make:auth 命令
确保您的composer.json 文件中有此依赖项
然后运行