Blade - 模板
是laravel中的模板引擎
两大特性
1. 模板继承
@extends('layouts.app')
2. 切片
@yield('content')
3. 引入其他页面
@include('admin.layou.header')
4. 定义
@section
//父页面
@section('定义')
内容
@show
//子页面实现
@section('sidebar')
@parent
//对父类的追加
<p>This is appended to the master sidebar.</p>
@endsection
//对父页面的传参
@section('title', 'Page Title')
网友评论