@extends('dashboard.layouts.master') @section('title', 'Promotion Detail | Admin Panel') @push('after-styles') @endpush @section('content')
| Business Owner | {{ $businessName }} |
| Promotion Type | {{ $promotion->promotionType->name ?? 'N/A' }} |
| Amount | ${{ number_format($promotion->amount, 2) }} |
| Payment Mode | {{ ucfirst($promotion->payment_mode) }} |
| Payment Status | {!! \App\Models\Promotion::paymentStatusBadge($promotion->payment_status) !!} |
| Start Date | {{ $promotion->start_date ? $promotion->start_date->format('Y-m-d') : '—' }} |
| End Date | {{ $promotion->end_date ? $promotion->end_date->format('Y-m-d') : '—' }} |
| Active | @if($promotion->is_active) Yes @else No @endif @if($canActivate) @endif |
| Requested On | {{ $promotion->created_at->format('Y-m-d H:i') }} |
Admin Notes:
{{ $promotion->notes }}
No notes recorded.
@endifConfirm that offline payment has been received before approving.