@extends('layouts.admin') @section('title', 'Offers') @section('content')
Add Offer
@forelse ($offers as $offer) @empty @endforelse
TitleRestaurantDiscountValidStatusActions
{{ $offer->title }} {{ $offer->restaurant->name ?? 'Platform-wide' }} {{ $offer->discount_percent }}% {{ $offer->valid_from->format('d M Y') }} - {{ $offer->valid_to->format('d M Y') }} {{ ucfirst($offer->status) }} Edit
@csrf @method('DELETE')
No offers yet.
{{ $offers->links() }}
@endsection