本文主要介紹了laravel框架模板之公共模板、繼承、包含實現方法,結合例項形式分析了Laravel框架中公共模板的建立、模板包含、模板繼承等相關操作技巧,需要的朋友可以參考下,具體如下:
簡介:
利用laravel框架開發後臺管理系統或web站點,即嵌入式開發,所以php開發人員要自己整合模板。
本篇舉例後臺管理系統
模板路徑:/resources/views/admin
1.建立公共目錄
/resources/views/admin/layouts/
layouts下面分別建立如下幾個模板(可自行減少或增多)
/header.blade.php 頭部
/main.blade.php body核心區域
/sidebar.blade.php 側邊欄
/footer.blade.php 腳部
/error.blade.php 提示部分
下面分別舉例以上幾個模板中的內容:
header.blade.php
<header>
xxxxxx
<p>退出登入</p>
</header>
main.blade.php
<!DOCTYPE html>
<html>
<head>
<title>@yield('title')</title>
<link rel="stylesheet" href="">
</head>
<body>
@include(admin.layouts.header) //包含頭部
@include(admin.layouts.sidebar) //包含側邊欄
<div>
@yield("content") //指定區塊
</div>
@include('admin.layouts.footer') //包含尾部
</body>
</html>
sidebar.balde.php
<aside>
<li></li>
</aside>
下面是一個其他正常的模板的寫法:
例如:
index.blade.php
@extends("admin.layouts.main") //繼承
@section('title','文章列表') //填充標題
@section("content") //填充區域內容
<div></div>
@endsection
以上是做專案過程中的一些總結