@php switch (true) { case is_route('genres.*'): $bodyId = "body_cat"; break; case is_route('articles.*'): $bodyId = "body_truyen"; break; case is_route('authors.*'): $bodyId = "body_author"; break; case is_route('articles.view_chapter'): $bodyId = "body_chapter"; break; default: $bodyId = "body_home"; break; } @endphp
@include('client.partials.header') @yield('content') @include('client.partials.footer')
@yield('comment-article-scripts') @yield('article-scripts')