我有一个观点,我希望将其存储在当前resources/views
之外。
目前我们这样访问它
public function sideBarItems(){
return view('ApplicationCreator.sideBarItems.blade.php');
}
但如果我想从外部resources/views
访问该视图该怎么办?如果我的文件夹树看起来像这样。
+newFolder
-foo.blade.php
+resouces
-views
-ApplicationCreator
-sideBarItems.blade.php
我应该如何访问foo.blade.php
答案 0 :(得分:0)
查看视图配置文件(config / view.php)。 在'路径中添加目录'数组,如下:
'paths' => [
realpath(base_path('resources/views')),
realpath(base_path('newFolder')),
],