我是 Stack Overflow 和 laravel 的新用户。
我刚开始在他们的官方网站上学习 L4,但现在我在加载视图时遇到了一个小问题。
现在我的观点不能正常工作。我在视图目录下调用的任何文件都会导致“文件不存在”错误。
这是我的代码....
作者控制器是:
class AuthorController extends BaseController{
public $restful = true;
public function get_index()
{
return View::make('authors.index');
}
}
在routes.php
我添加
Route::get('authors',array('uses'=>'authors@index'));
在下面views/authors/index.php
任何 html 文本