Laravel NotFoundHttpException

时间:2013-11-06 07:45:40

标签: php symfony laravel

我正在学习laravel php框架,我遇到了问题 我正在使用this tutorial 我遇到了问题:

  

的Symfony \元器件\ HttpKernel \异常\ NotFoundHttpException

  

Class App \ controllers \ Admin \ AuthController不存在

我试着做

composer dump-autoload

artisan dump-autoload

但没有任何帮助。

Github

上的存储库的

Here's the link

2 个答案:

答案 0 :(得分:0)

  1. 您能否详细说明抛出异常的路线
  2. 看看http://laravel.com/docs/installation如何设置Laravel 4,看看你是否错过了任何步骤

答案 1 :(得分:0)

命名空间区分大小写:

你必须改变:

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'
));