0
私はLaravelのBladetemplateを使用します。 master.blade.phpに1つだけインクルードして別のヘッダを設定する方法はありますか?異なるビューの異なるヘッダ(Bladeテンプレート、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