Laravel @section/endsection 与 @section/show, @yield 的区别
Posted chenliuxiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel @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。
以上是关于Laravel @section/endsection 与 @section/show, @yield 的区别的主要内容,如果未能解决你的问题,请参考以下文章