标签: 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
当我运行代码页为空时,它不起作用
答案 0 :(得分:0)
我可以肯定不会出现任何错误,代替@stop写@endsection。