大家好,我想加載shopReq.blade.php
文件在master.blade.php
,我成功地做到了這一點。但是當我加載modals.blade.php
文件在shopReq.blade.php
它不包括在內。我在這裏做錯了什麼?請幫忙。@yield,@laction在Laravel
master.blade.php(在視圖/佈局):
<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');
});
您是否收到任何錯誤? –
@ B.Desai No.沒有錯誤。我想'modals.blade.php'在'shopReq.blade.php'上。但我這樣做沒有成功。 –
哪個'view'你最終打電話?在你的問題添加路線和查看調用代碼。你在這種情況下添加了'welcome'視圖代碼,而不是實際的問題代碼 –