从 welcome.blade.php 视图中尝试 @yields @section('content'),但我无法获得网页上的任何结果。
视图/布局/ master.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
</head>
<body>
<div class="container">
<p>Hello World!</p>
@yield('content')
</div>
</body>
</html>
视图/ welcome.blade.php
@extends('layouts.master')
@section('content')
This is content!
@endsection
在网页上显示 Hello World!,但不会从扩展布局中显示内容。
我已经多次检查过代码,但无法找到解决方案。我之前使用过这个模板引擎,但效果很好。不幸的是,这次没有任何意义。