我试图首先包含header.blade.php而不是内容,但它包含错误的方式。
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!-- include navbar / header -->
@include('site.components.header')
<!-- content -->
@yield('content')
<!-- footer -->
@include('site.components.footer')
</body>
</html>
&#13;
渲染后
,首先包含HTML内容而不是标题。
答案 0 :(得分:1)
当您创建一个可以包含某些内容的部分时,您需要将其停止,例如:
@section('name of section here')
//Your customized content for this section.
@stop
使用@show时会立即输出内容,即结束当前部分并生成它。屈服意味着这是该部分的内容将被输出的点。
@section('name of section here')
//Your customized content for this section.
@show