@extends('layouts.admin') @section('title', 'Offers') @section('content')
| Title | Restaurant | Discount | Valid | Status | Actions |
|---|---|---|---|---|---|
| {{ $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 |
| No offers yet. | |||||