{{-- Dynamic Page Title --}} @yield('title', 'AVIOBOOTS - Premium Men\'s Leather Boots') {{-- Basic Stylesheets --}} @stack('styles') {{-- Preload Critical Fonts --}} {{-- Loading Screen --}} @include('partials.loading-screen') {{-- Cookie Consent Banner --}} @if(!session('cookie_consent')) @endif @php $annEnabled = \App\Models\Setting::get('announcement_enabled') === '1'; $annText = \App\Models\Setting::get('announcement_text', ''); $waEnabled = \App\Models\Setting::get('whatsapp_enabled') === '1'; $waNumber = \App\Models\Setting::get('whatsapp_number', ''); @endphp @if($annEnabled && $annText)
{{ $annText }}
@endif @include('partials.header') @if($waEnabled && $waNumber) @endif
@yield('content')
@include('partials.footer')
{{-- Order Complete Celebration Banner --}} @if(session('order_complete')) @php $oc = session('order_complete'); @endphp
🎉

Order Delivered!

Your boots have arrived, {{ $oc['name'] }}!
We hope you love them. Thank you for shopping with AVIOBOOTS.

@endif {{-- Analytics Tracking Script --}} @stack('scripts')