{{-- resources/views/layouts/app.blade.php --}} @php use App\Helpers\Helper; $configData = Helper::applClasses(); @endphp @yield('title', 'My App') {{-- Google Fonts --}} {{-- Vendor and Theme Styles --}} {{-- Custom Overrides --}} @stack('styles') {{-- ✅ Header Section --}} @include('layouts.header') {{-- ✅ Sidebar for certain layouts --}} @includeWhen(in_array($layoutClass ?? 'default-layout', ['horizontalLayoutMaster', 'verticalLayoutMaster']), 'layouts.sidebar') {{-- ✅ Main Content --}}
@yield('content')
{{-- ✅ Footer Section --}} @include('layouts.footer') {{-- ✅ Core Scripts --}} {{-- ✅ Feather icons --}} @stack('scripts')