新手关于blade模板的继承问题
我是直接重官方文档上复制下来的代码如下
views/Admin/layouts/master.blade.php
根据官方文档直接复制没有更改
views/Admin/layouts/master.blade.php
<html>
<head>
<title>App Name - @yield('title')</title>
</head>
<body>
@section('sidebar')
This is the master sidebar.
@show
<div class="container">
@yield('content')
</div>
</body>
</html>
根据官方文档直接复制没有更改
views/Admin/Index.blade.php
@extends('layouts.master')
@section('title', 'Page Title')
@section('sidebar')
@parent
<p>This is appended to the master sidebar.</p>
@stop
@section('content')
<p>This is my body content.</p>
@stop
2 个回复
寸影
赞同来自:
萧晔离 - 一个脱离了高级趣味的人。
赞同来自: