我有一个header.blade.php
视图,如下所示:
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
SomeThins come here
</head>
<body>
@stack('user_navbar')
下面是一个default.blade.php
:
@include('main.includes.header')
@push('user_navbar')
The user Navbar is here
@endpush
@yield('content')
@include('main.includes.footer')
下面是一个main.blade.php
:
@extends('main.default')
@section('content')
Some Content is here
@endsection
我想将user_navbar
内容推送到header
视图中。但没有任何迹象表明。
1条答案
按热度按时间xuo3flqw1#
这可能不是您心目中的确切文件设计,但为什么不使用以下文件:
header.blade.php
和
default.blade.php
这样,当呈现default.blade.php文件时,推送到user_navbar堆栈的内容将显示在header.blade.php文件中包含的@stack('user_navbar')指令中。