我无法使用我的Laravel应用加载任何视图。我一直收到这个错误:
InvalidArgumentException
View [index] not found.
我确信该视图存在,并且它只是查看加载,所以我不知道会出现什么问题。
这是控制器方法的代码:
public function getIndex()
{
// Get all the blog posts
$posts = $this->post->orderBy('created_at', 'DESC')->paginate(10);
// Show the page
return View::make('site/blog/index', compact('posts'));
}
答案 0 :(得分:1)
Laravel在view.php配置文件中配置的目录(或目录)中搜索视图。 (默认位置:app/config/view.php
)
注意:默认值使用__DIR__
变量指定相对路径。因此,当您移动文件或将其复制到环境配置目录时(在OP'开发'中),您可以相应地更改路径。