@extends('layouts.admin') @section('title', 'Popup Offers - Orange Groceries Admin') @section('header_title', 'Promotional Popup Offers') @section('content')

New Promotional Popup

@csrf

* Note: If both file upload and URL are provided, the uploaded image file will take priority.

Active Popups List

@foreach($popups as $pop) @endforeach
Title Description Image Status Actions
{{ $pop->title }} {{ $pop->description }} @if($pop->image) @else No image @endif {{ $pop->status ? 'Active' : 'Disabled' }}
@csrf
{{ $popups->links() }}
@endsection