2013-11-26 69 views
0

我想在佈局或在包括定義一個部分,如:葉片模板,在擴展視@yield

/views/master.blade.php 
@section('mysection') 
    content here 
@stop 
@yield('content') 

並能夠在視圖,得到它繼承的佈局:

/views/home.blade.php 
@extends('master') 
@section('content') 
    @yield('mysection') 
@stop 

從我測試過的這個不起作用。有沒有另外一種方法呢?

某些部分不應該總是呈現,也不應該與佈局上的位置相同,所以yield方法會做我所需要的。

回答

0

您可以嘗試修改master.blade.php爲:

/views/master.blade.php 
@section('mysection') 
    content here 
@show 
@yield('content')