@extends('layouts.admin') @section('title', 'Venue Details - ' . $venue->name) @section('content')
Business: {{ $venue->business->business_name }} | Category: {{ $venue->category->name }}
| Offer Title | Discount | Valid Until | Redemptions | Status |
|---|---|---|---|---|
| {{ $offer->title }} | @if($offer->discount_percentage) {{ $offer->discount_percentage }}% @elseif($offer->discount_amount) AED {{ number_format($offer->discount_amount) }} @else - @endif | {{ $offer->end_date ? $offer->end_date->format('M d, Y') : '-' }} | {{ $offer->redemption_count }} | Active |