我在登录管理部分时遇到此错误。我们使用了此网址中的示例项目 - https://github.com/jayminpanchal/laravel-multiauth-demo。
这是完整的错误::
Whoops, looks like something went wrong.
1/1
FatalErrorException in LoginController.php line 52:
Class 'App\Http\Controllers\Admin\Auth\Auth' not found
in LoginController.php line 52
答案 0 :(得分:6)
This issue发布在你引用的github repo上。
github用户aliwesome发布的解决方案似乎是您必须在Admin \ Auth \ LoginController中使用Auth Facade
添加以下行:使用Illuminate\Support\Facades\Auth;