我已经定义了包含页眉,页脚和内容部分的app.blade.php
:
<html>
<head>
....
<title>@yield('title')<title>
<meta type='description' content="@yield('description')">
...
</head>
<body>
..
@yield('content')
..
</body>
</html>
在我延长app.blade
的所有子刀片中,我必须为description
定义一个值,否则它将为空,谷歌将在搜索结果中没有显示它的描述:
@extend('app')
@section('title','a title')
@section('description','something')
@section('content')
....
@endsection
如果我没有在已延长description
的子刀片中定义它,我怎么能阻止app.blade
元包含在头部?