{{-- Fonts --}} {{-- Vite --}} @vite(['resources/css/app.css', 'resources/js/app.js']) {{-- Page Builder CSS --}} {{-- Dynamic Head Assets --}} @stack('head') @stack('styles')
@include('partials.front-header') {{-- MAIN CONTENT --}}
@yield('content')
@include('partials.front-footer')
{{-- JS --}} @stack('scripts') @if(!empty($activePopups) && count($activePopups)) @foreach($activePopups as $popup) @php $firstSection = $popup->sections[0] ?? null; $modalWidth = '800px'; // default if ($firstSection && isset($firstSection['layout']['contentWidth'])) { $modalWidth = $firstSection['layout']['contentWidth']; } @endphp @endforeach @endif @stack('scripts')