画面に表示するレポートがあります。
report.blade.php
<html>
<head>
</head>
<body>
@yield('content')
</body>
</html>
report_sub1.blade.php
@extends('reports.report')
@section('content')
<h1> This is sub section 1 </h1>
<h1> This is sub section 2 </h1>
@stop
セクション 2 を 1 番目のレポートに含めたいのですが、2 番目のレポートには含めません。つまり、2 つの同一のレポートがありますが、1 つはセクション 2 を印刷すべきではありません。
どうやってそれができる?