大家好我想在master.blade.PHP中加载shopReq.blade.PHP文件,我成功了.但是当我在shopReq.blade.PHP中加载modals.blade.PHP文件时,它不包括在内.我在这里做错了吗?请帮忙.
master.blade.PHP(在views / layouts中):
<html>
<body >
@yield('content')
</body>
</html>
shopReq.blade.PHP(在视图中)
@extends('layouts.master')
@section('content')
<h1>Hello I am in shopReq.blade.PHP
@yield(content)
@endsection
modals.blade.PHP(在视图中)
@extends('shopReq')
@section('content')
<h1>Hello I am in modals.blade.PHP
@endsection
web.PHP:
Route::group(['middleware' =>['web']], function()
{
Route::get('/', function () {
return view('welcome');
})->name('home');
});
解决方法:
问题在于名称相似.
你不能在一个部分(‘内容’)中产生(‘内容’)你必须重命名其中一个集合.
因此,要么更改shopReq中的master和section中的yield,要么更改shopReq中的yield和modal中的section.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。