laravel 5.2 yield和section无法正常工作

时间:2018-07-10 08:16:50

标签: php laravel laravel-5

我的homep.blade.php

@yield('content')

我的body.blade.php

@extends('Home.homep')

@section('content')
<p>This is my body content.</p>
@stop

当我运行代码页为空时,它不起作用

1 个答案:

答案 0 :(得分:0)

我可以肯定不会出现任何错误,代替@stop写@endsection。