我有一份报告在屏幕上呈现。
报告.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 节包含在第一份报告中,但不包含在第二份报告中。意思是我有两份相同的报告,但一份不应该打印第 2 节。
你怎么能那样做?