我有layouts.app.blade.php,我有我的和
标签,还有
.
在我为每个页面生成内容,所以他们基本上扩展了这个app.blade.php.
所有基本的Laravel东西,所以现在我有这个:
// ... @yield('content')
我想用它来显示我的pagetitle.所以这意味着它必须为这个'parent.blade.php'中加载的每个模板(使用@yield('content'))进行更改.
我如何使用Laravel 5.2做到这一点?
非常感谢
如果这是您的母版页标题
App Name - @yield('title') @section('sidebar') This is the master sidebar. @show@yield('content')
然后您的页面标题可以在您的刀片页面中更改,如下所示
@extends('layouts.master') @section('title', 'Page Title') @section('sidebar') @parentThis is appended to the master sidebar.
@endsection @section('content')This is my body content.
@endsection
更多信息可以在这里找到Laravel Docs