Promotion Approval Queue Report

Ads Management — Promotion Requests

@if($date_from || $date_to) Period: {{ $date_from ?: 'All time' }} — {{ $date_to ?: 'Present' }} @else Period: All time @endif Generated: {{ date('Y-m-d H:i') }} Total Records: {{ count($results) }}
@foreach($results as $i => $row) @endforeach
# Business Name Promotion Type Amount ($) Status Payment Mode Start Date End Date Requested Date
{{ $i + 1 }} {{ $row->business_name }} {{ $row->promotion_type_name ?? 'N/A' }} {{ number_format($row->amount, 2) }} {{ ucfirst($row->status) }} {{ ucfirst($row->payment_mode) }} {{ $row->start_date ?? 'N/A' }} {{ $row->end_date ?? 'N/A' }} {{ \Carbon\Carbon::parse($row->created_at)->format('Y-m-d H:i') }}