- 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
网友评论