Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做一个简单的模板设置,每个页面都可以访问页眉和页脚布局
有点像:
<html> <body> @layout('header') <stuff here> </body> @layout('footer') </html>
我将它们命名为 header.blade.php 和 footer.blade.php,这在 index.blade.php 文件中。
但是当我运行它时,它只会打印 @layout('header') & @layout('footer')
我回答了我自己的问题,您必须提供 @yield('yieldname')