1. 程式人生 > >Laravel Blade 模板 @section/endsection 與 @section/show, @yield 的區別

Laravel Blade 模板 @section/endsection 與 @section/show, @yield 的區別

base layout 中需要使用

@section("section_name")
區塊鏈是什麼?
@show

繼承的 blade 中需要使用

@section("section_name")
區塊鏈的定義
@endsection

其會覆蓋父模板中的內容。

如果需要基於原 layout section 附加內容

@section("section_name")
	@parent
	<p>區塊鏈是xxx</p>
@endsection

@yield 類似於 @section/show 的用法,但是其繼承者不能使用 @parent。