我想要渲染一个简单的视图:
public function test()
{
return \View::make('test');
}
我缓存我的配置:
$ php artisan config:cache
Configuration cache cleared!
Configuration cached successfully!
当我在网络浏览器中运行时,我得到了:
InvalidArgumentException in FileViewFinder.php line 140:
View [test] not found.
in FileViewFinder.php line 140
at FileViewFinder->findInPaths('test', array('/XXXXXX/resources/views')) in FileViewFinder.php line 77
at FileViewFinder->find('test') in Factory.php line 145
at Factory->make('test') in Facade.php line 213
... (framework backtrace)
我清除配置缓存...
$ php artisan config:clear
Configuration cache cleared!
...呈现视图(它是一个简单的HTML视图resources/views/test.blade.php
)
为什么它只能在没有缓存配置的情况下工作?
答案 0 :(得分:22)
当您的机器在vagrant(或其他虚拟环境)上运行并且您从vagrant运行php artisan config:cache
时,它不起作用。你需要在vagrant中运行这个命令吗?问题在于路径路径(流浪者和流浪者的路径不同)。