P粉5461798352023-08-07 11:27:14
请在您的主文件中执行以下操作:
<HTML> <head></head> <body> @yield('section') </body> </html>
在另一个文件中
@extends('layouts.app') @section('section') <p>This is appended to the master sidebar.</p> @endsection
您可以在https://laravel.com/docs/10.x/blade#extending-a-layout阅读更多内容