我正在观看关于使用Laravel构建真实应用程序的tutsplus系列。该系列是去年创建的。我认为这是为了Laravel 3。
我假设有很多变化,到目前为止我发现了大部分变化,并将其替换为旧代码。但我无法想出这个。
在下面的代码中,即使我知道的课程在那里,我也会收到错误ReflectionException - Class questions does not exist
。我确实尝试过composer update和auto-dumb但输出相同。
我认为这些文件的以太有问题:
代码:
QuestionsController.php
class QuestionsController extends BaseController {
public $restful = true;
public function get_index() {
return View::make('questions.index')
->with('title', 'Make it snappy Q&A - Home');
}
}
Route.php:
Route::get('/', array(
'as' => 'home',
'uses' => 'questions@index'
));
为什么会出错?
答案 0 :(得分:4)
应该有效
Route::get('/', array(
'as' => 'home',
'uses' => 'QuestionsController@get_index'
));