Laravel 5包括没有刀片

时间:2015-03-11 03:29:31

标签: laravel laravel-5

我想在索引页面上包含一个文件。在PHP中我使用像include('include/header.php');这样的东西 或者在幼虫4中使用include(app_path().'/views/includes/header.php'); 我的问题是......在Laravel 5中是如何完成的,因为整个框架已经改变了文件夹结构,什么不是?似乎app_path()不再有效。另外,我不想利用刀片语法。有没有人对此有所了解?

2 个答案:

答案 0 :(得分:2)

使用base_path因为视图不在app目录之外。您也可以将路径传递给函数,不需要字符串连接

include(base_path('resources/views/includes/header.php'));

答案 1 :(得分:0)

试试这样:

include(app_path().'/../resources/views/includes/header.php');