@extends('partner.layouts.app') @section('title', 'View Offer') @section('content') @php $statusClasses = [ 'active' => 'bg-green-100 text-green-800', 'expiring_soon' => 'bg-amber-100 text-amber-800', 'paused' => 'bg-gray-100 text-gray-800', ]; $statusLabels = [ 'active' => 'Active', 'expiring_soon' => 'Expiring Soon', 'paused' => 'Paused', ]; @endphp

Offer Details

Review this offer information.

{{ $offer->title }}

Category: {{ $offer->category }}

{{ $statusLabels[$offer->status] ?? ucfirst($offer->status) }}

Discount

{{ $offer->discount_label }}

Valid From

{{ $offer->valid_from->format('M d, Y') }}

Valid Until

{{ $offer->valid_until->format('M d, Y') }}

Redemptions

{{ number_format((int) ($offer->verified_redemptions_count ?? 0)) }}

Member Savings

Rs. {{ number_format((float) ($offer->verified_saved_amount ?? 0), 2) }}

Description

{{ $offer->description ?: 'No description provided.' }}

@endsection