{{-- Dynamic brand colors from admin settings --}} @php $__brandColor = \App\Models\SystemSetting::get('primary_color'); $__brandStrong = \App\Models\SystemSetting::get('secondary_color'); $__accentColor = \App\Models\SystemSetting::get('accent_color'); @endphp @if($__brandColor || $__brandStrong || $__accentColor) @endif {{-- Custom confirm modal setup --}} {{-- Favicon --}} @php $customFavicon = \App\Models\SystemSetting::get('favicon'); @endphp @if($customFavicon) @else @endif {{-- PWA (conditional on admin setting) --}} @php $pwaEnabled = \App\Models\SystemSetting::get('pwa_enabled', 'false') === 'true'; @endphp @if($pwaEnabled) @php $pwaIcon = \App\Models\SystemSetting::get('pwa_icon'); @endphp @if($pwaIcon) @endif @endif {{-- Google Fonts: Outfit --}} @vite(['resources/css/app.css', 'resources/js/app.js']) @livewireStyles {{-- Admin-defined custom CSS rendered into every page's
. --}} @php $__customCss = \App\Models\SystemSetting::get('custom_css', ''); @endphp @if(trim($__customCss) !== '') @endif {!! \App\Models\SystemSetting::get('head_code', '') !!} {{-- Skip to content (a11y) --}} Skip to main content {{-- Offline indicator --}} {{-- Progress Bar --}}