我正在尝试使用 Laravel 4 运行一个示例示例,但我遇到了诸如找不到类之类的错误。有人可以帮我吗?
控制器文件名:authors.php
<?php
class Authors extends BaseController {
public $restful = true;
public function get_index() {
return View::make('authors.index');
}
}
?>
路由.php
Route::get('authors', array('uses'=>'authors@index'));
查看/作者/index.php
<h1> First program in Laravel 4 </h1>