1

我正在尝试做一个简单的模板设置,每个页面都可以访问页眉和页脚布局

有点像:

<html>
<body>
@layout('header')
<stuff here>
</body>
@layout('footer')
</html>

我将它们命名为 header.blade.php 和 footer.blade.php,这在 index.blade.php 文件中。

但是当我运行它时,它只会打印 @layout('header') & @layout('footer')

4

1 回答 1

0

我回答了我自己的问题,您必须提供 @yield('yieldname')

于 2013-05-15T03:33:24.540 回答