我的Laravel 4项目有问题。我想开始使用刀片模板,但加载项目时我得到的只是错误。 我有一个index.php视图,这是我的routes.php文件:
Route::get('/', function()
{
return View::make('index');
}
这一切都像魅力一样。但是我改变了我的视图文件名到index.blade.php就没有了。
我试图将routes.php文件更改为:
Route::get('/', function()
{
return View::make('index.blade');
}
但没有运气。
我一直缺少什么?
答案 0 :(得分:1)
尝试设置本地环境以获取更详细的错误消息。
http://laravel.com/docs/configuration#environment-configuration
你应该很高兴:
Route::get('/', function()
{
return View::make('index');
});
注意右括号和分号,这是我注意到你的代码中唯一遗漏的东西。