我有一个使用刀片模板的 laravel 站点。我的模板填充了基本布局的一些内容并使用了一段@include()
时间:
@section('content')
[some html and other @-code]
@include('form-text')
@stop
基本布局需要内容部分 by @yield('content')
,到目前为止它适用于其他所有内容。但是在加载页面时,我只得到包含的内容,而不是尾随的结果代码。一旦我将包含注释掉,我就会得到尾随代码的结果。
是否@include
覆盖其他代码?是否有替代方法@include
或我错过了类似@parent
-like 命令的其他内容?
提前谢谢,nx