美文网首页
Blade 模板引擎子视图

Blade 模板引擎子视图

作者: 周怡 | 来源:发表于2018-02-16 10:15 被阅读0次
    • include
    @include('common.header', ['page' => 'the article page'])
    <div class="top">
    I am the top of all the pages - The page you visit is : {{$page}}
    </div>
    
    • extends
    @extends('layouts.home')
    
    • yield
    @yield('content')
    
    • section
      1 home.blade.php
    @section('content')
        <p> I am the content of the home model</p>
        @show
    

    2 layouts.blade.php

    @section('content')
        @parent
        <div class="middle">
        I am the replacement in the zone of layouts vvvvv
        </div>
    @endsection
    

    相关文章

      网友评论

          本文标题:Blade 模板引擎子视图

          本文链接:https://www.haomeiwen.com/subject/smxptftx.html