视图的继承和组合
Laravel的视图引擎支持视图的继承和组合。这使得开发者可以轻松创建复杂的视图,并重复使用相同的布局和代码。
使用视图的继承和组合,需要创建一个父视图(Layout),并在其中定义占位符(Section)。子视图可以通过@section指令填充这些占位符。
下面是一个视图继承和组合的示例:
父视图:
代码语言:javascript复制<!-- resources/views/layouts/app.blade.php -->
<html>
<head>
<title>@yield('title')</title>
</head>
<body>
<header>
@yield('header')
</header>
<main>
@yield('content')
</main>
<footer>
@yield('footer')
</footer>
</body>
</html>
子视图:
代码语言:javascript复制<!-- resources/views/home.blade.php -->
@extends('layouts.app')
@section('title', 'Home')
@section('header')
<h1>Welcome to my website!</h1>
@endsection
@section('content')
<p>This is the home page.</p>
@endsection
@section('footer')
<p>© 2023 - My Website</p>
@endsection
在这个示例中,home视图继承了app视图,并重写了其中的三个占位符,分别是title、header和footer。