| Order ID | User Name | Mobile | Amount | Payment Status | Date | Invoice PDF | Actions | |
|---|---|---|---|---|---|---|---|---|
| {{ $payment->order_id }} |
{{ substr($payment->user->name, 0, 2) }}
{{ $payment->user->name }}
|
{{ $payment->user->email }} | {{ $payment->user->mobile_no ?? 'N/A' }} | ₹{{ number_format($payment->total_amount, 2) }} | @if($payment->payment_status === 'paid') Paid @elseif($payment->payment_status === 'pending') Pending @elseif($payment->payment_status === 'failed') Failed @else {{ ucfirst($payment->payment_status) }} @endif | {{ $payment->created_at->timezone('Asia/Kolkata')->format('d M Y') }} | @if($payment->invoice_pdf) {{ $payment->invoice_pdf }} @else - @endif | |
| No payments found. | ||||||||