Class App\\Http\\Controllers\\AuthController does not exist Laravel 5.2
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My whole application, made in Laravel 5.2, is working perfectly fine but when i tried to get list of routes through following command: php artisan route:list It shows me following error: [ReflectionException] Class App\Http\Controllers\AuthController does not exist i tried to add namespace aswell: Route::group(['middleware' => ['web'], 'namespace' => 'Auth'], function () { Route::auth(); }); then it shows me following error: [ReflectionException] Class App\Http\Controllers\Auth\Auth\AuthController does not exist My routes file is: Route: