我想从另一个根目录加载视图文件。示例:公共函数getProducts(Request $request){返回视图(http://localhost/laravelApp/view/products,$data);} http://localhost/laravel/view这是我的另一个视图文件目录,“products”是视图文件名,我的laravel项目目录是laravelApp。我的laravel版本5.8
http://localhost/laravelApp/view/products
http://localhost/laravel/view
7kqas0il1#
在您的情况下,可以使用{{url('../other-project-name/view/my-view')}}或return view(url('../other-project-name/view/my-view'));编辑:这可能会帮助您调试:https://laravel.com/docs/9.x/collections#method-dd
{{url('../other-project-name/view/my-view')}}
return view(url('../other-project-name/view/my-view'));
1条答案
按热度按时间7kqas0il1#
在您的情况下,可以使用
{{url('../other-project-name/view/my-view')}}
或return view(url('../other-project-name/view/my-view'));
编辑:这可能会帮助您调试:https://laravel.com/docs/9.x/collections#method-dd