新手关于blade模板的继承问题

我是直接重官方文档上复制下来的代码如下
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
已邀请:

寸影

赞同来自:

运行之后

10(C_]P_0`CP(EEI{CKOSXL.png

萧晔离 - 一个脱离了高级趣味的人。

赞同来自:

@extends('Admin.layouts.master')

要回复问题请先登录注册