能夠新建一個佈局模板,layout.blade.phpphp
在layout中設置公共頭、尾html
<html> <body> <!-- 公共頭部代碼 --> @yield('content') <!-- 公共尾部代碼 --> </body> </html>
再新建個內容模板,content.blade.php
繼承佈局模板佈局
@extends('layout') @section('content') <!-- 頁面內容 --> @stop
固然公共頭部也能夠再單獨寫一個模板header.blade.php
在layout中用@include('header')htm