0
나는 BladePlate of Laravel을 사용합니다. master.blade.php에 하나의 include 만있는 다른 뷰에 다른 헤더를 설정하는 방법이 있습니까?다른보기의 다른 머리글 (블레이드 템플리트, Laravel)
master.blade.php
@include("elements.header")
@yield('content')
@section("footer")
@show
view.blade.php
@extends("layouts.master")
@section("title")
@stop
@section("content")
@include("elements.error")
@section("footer")
@include("elements.footer")
@stop