我正在学习 laravel php 框架,但遇到了问题。
我正在使用本教程
并且遇到以下问题:
Symfony\Component\HttpKernel\Exception\NotFoundHttpException
和
类 App\controllers\Admin\AuthController 不存在
我试着做
composer dump-autoload
和
artisan dump-autoload
但没有任何帮助。
这是Github 上存储库的链接
命名空间区分大小写:
你必须改变:
Route::get('admin/logout', array(
'as' => 'admin.logout',
'uses' => 'App\controllers\Admin\AuthController@getLogout'
));
至
Route::get('admin/logout', array(
'as' => 'admin.logout',
'uses' => 'App\Controllers\Admin\AuthController@getLogout'
));
在文件 BaseController.php
use Illuminate\Routing\Controller;
在文件 AuthController.php
use App\Controllers\BaseController;