{{-- Ad Popup/Modal Component --}} {{-- Follows the same pattern as announcement-modal.blade.php --}} {{-- z-index z-[55]/z-[56] — below announcements z-[60]/z-[61] --}} @php $popupAds = \Illuminate\Support\Facades\Cache::remember('ads_popup', 300, function () { return \App\Models\Ad::current() ->forPlacement('popup') ->orderBy('sort_order') ->get(); }); @endphp @if($popupAds->count() > 0)
{{-- Backdrop --}}
{{-- Modal Panel --}}
{{-- Close button --}} {{-- Content --}}
{{-- Footer / Actions --}}
{{-- Counter if multiple --}}
@endif