簡體   English   中英

如何在 Laravel 中使用 @yield 到 @include

[英]How to use @yield into @include in laravel

如何在 Laravel 中使用@yield@include

@include("layout.common.common-header",["title"=> @yield('title') ,"description"=>"description"])

使用View::getSection('title')獲取@yield('title')

@include("layout.common.common-header",["title"=> View::getSection('title'),"description"=>"description"])

請試一試,

@include('layout.common.common-header',['title' => new Illuminate\Support\HtmlString($__env->yieldContent('title')) ,'description'=>'description'])

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM