@extends('admin.MainComponent') @section('content')

Manage Offers

@if(session('success')) @endif @if(session('error')) @endif
Current Offers
@forelse($offers as $offer) @empty @endforelse
# Image Title Duration Status Actions
{{ $loop->iteration }} @if($offer->image) {{ $offer->title }} @else
@endif
{{ $offer->title }} {{ $offer->start_date->format('M d, Y') }} - {{ $offer->end_date->format('M d, Y') }} {{ $offer->status }}
@csrf @method('DELETE')

No offers found. Create your first offer!

@if($offers->hasPages())
{{ $offers->links() }}
@endif
@endsection