1

我有一份报告在屏幕上呈现。

报告.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 节。

你怎么能那样做?

4

1 回答 1

2

您可以将您的report.blade.php用作母版页。然后使用两个部分作为子部分,并使用第三个部分作为section 1. 最后仅在需要的地方包含最后一部分:

第1节.php

<!-- section 1 definition-->
<h1> This is sub section 1 </h1>   

report_sub1.blade.php

@extends('reports.report')

@section('content')
     <!-- section 1 included -->
     @include('section1')

     <!-- section 2 included only here--> 
     <h1> This is sub section 2 </h1>  
@stop

report_sub2.blade.php

@extends('reports.report')

@section('content')
     <!-- section 1 included -->
    @include('section1') 

    <!-- section 2 included is not included here-->   
@stop
于 2015-12-15T11:00:24.553 回答