我在 Laravel 5.3 中创建了一个多重身份验证,
然后将 Controller/Auth/[files]
移动到:
管理员: Controller/Admin/Auth/[files]
&
站点: Controller/Site/Auth/[files]
在命令行中,我输入 php artisan route:list
,
它向我显示以下错误:
类 App\Http\Controllers\Auth\LoginController 不存在
我的问题在哪里?
原文由 user6944367 发布,翻译遵循 CC BY-SA 4.0 许可协议
您需要手动定义 --- 中的所有 ---
web.php
Auth
路由,并删除Auth::routes()
。只需定义所有路线,例如,