我是 Laravel 框架的新手,想要使用 Laravel 布局母版页,并用于在母版页中包含子页面。这是我的页眉和页脚页面,app.blade.php 是我的母版页,我在其中使用 @yield 来显示数据。但这对我不起作用。我的输出显示空白。
app.blade.php(布局母版页)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<title>Master Page</title>
</head>
<body>
<div>
<div>
@yield('header')
</div>
<div class="content">
@section('content')
<h1> Body </h1>
@endsection
</div>
<div>
@yield('footer')
</div>
</div>
</body>
</html>
幕布斯6054654
幕布斯7119047
倚天杖