目錄結構 視圖 文件夾:主 - >文件masterPage.blade .PHP,header.blade.php 文件夾:userControl->文件dashboard.balde.php
母版頁代碼:
<div class="wrapper">
@yield('header') **not working**
<!-- Left side column. contains the logo and sidebar -->
<!-- Content Wrapper. Contains page content -->
@yield('content') **working**
<!-- /.content-wrapper -->
<footer class="main-footer">
</footer>
Header.blade.php
@extends('master.masterPage')
@section('header')
<header class="main-header">
some code
</header>
@stop
做了,仍然沒有工作 – Sumeet