서브 테마 활용
서브테마 구성
<!-- theme.blade.php -->
@include($theme::view('header'))
<div class="content" id="content">
{!! $content !!}
</div>
@include($theme::view('footer'))..
└── views/
├── header.blade.php
├── footer.blade.php
└── theme.blade.phpLast updated
Was this helpful?