我想在索引页面上包含一个文件。在PHP中我使用像include('include/header.php');
这样的东西
或者在幼虫4中使用include(app_path().'/views/includes/header.php');
我的问题是......在Laravel 5中是如何完成的,因为整个框架已经改变了文件夹结构,什么不是?似乎app_path()不再有效。另外,我不想利用刀片语法。有没有人对此有所了解?
答案 0 :(得分:2)
使用base_path
因为视图不在app目录之外。您也可以将路径传递给函数,不需要字符串连接
include(base_path('resources/views/includes/header.php'));
答案 1 :(得分:0)
试试这样:
include(app_path().'/../resources/views/includes/header.php');