Blade 模板中 @show @stop 的使用

2017-01-06  本文已影响322人  伍源辉

@show @stop 的区别

首先,@endsection 在 4.0 版本中已经移除,虽然向下兼容,但是不建议使用 。

case 5:

{{-- layout/master.blade.php --}}
@section('title')
    默认标题
@show

{{-- test.blade.php --}}
@extends('layout.master')
@section('title')
    新的标题
@show

新的标题 新的标题

case 6:

{{-- layout/master.blade.php --}}
@section('title')
    默认标题
@show

{{-- test.blade.php --}}
@extends('layout.master')
@section('title')
    新的标题
@stop

新的标题

case 7:

{{-- layout/master.blade.php --}}
@section('title')
    默认标题
@stop

{{-- test.blade.php --}}
@extends('layout.master')
@section('title')
    新的标题
@show

新的标题

case 8:

{{-- layout/master.blade.php --}}
@section('title')
    默认标题
@stop

{{-- test.blade.php --}}
@extends('layout.master')
@section('title')
@parent
    新的标题
@stop

(null)


结论

上一篇 下一篇

猜你喜欢

热点阅读