{{-- resources/views/layouts/contentLayoutMaster.blade.php --}} @yield('title') - {{ config('app.title', 'App') }} {{-- Fonts --}} {{-- BEGIN: Vendor CSS --}} @yield('vendor-style') {{-- END: Vendor CSS --}} {{-- BEGIN: Page CSS --}} @yield('page-style') {{-- END: Page CSS --}} {{-- ✅ Include custom styles --}} @include('panels.styles') {{-- ✅ Navbar --}} @include('panels.navbar') {{-- ✅ Sidebar (horizontal/vertical layout selector) --}} @isset($configData['mainLayoutType']) @includeIf( $configData['mainLayoutType'] === 'horizontal' ? 'layouts.horizontalLayoutMaster' : 'layouts.verticalLayoutMaster') @endisset {{-- ✅ Main Page Content --}}
@yield('content')
{{-- ✅ Scripts --}} @include('panels.scripts') {{-- ✅ Custom Scripts from Admin Settings --}} @if (Helper::app_config('custom_script')) {!! Helper::app_config('custom_script') !!} @endif {{-- Page-Specific JS --}} @yield('vendor-script') @yield('page-script')