Manage and view all subscription payments
Manage and view all subscription payments
| Order ID | User Name | Mobile | Amount | Payment Status | Date | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $payment->order_id }} |
{{ $payment->user ? strtoupper(substr($payment->user->name, 0, 1)) : 'U' }}
{{ $payment->user->name ?? 'N/A' }}
|
{{ $payment->user_email }} | {{ $payment->mobile_no }} | ₹{{ number_format($payment->total_amount, 2) }} | @if($payment->payment_status === 'paid') Paid @elseif($payment->payment_status === 'pending') Pending @else Failed @endif | {{ $payment->created_at->timezone('Asia/Kolkata')->format('d M Y') }} {{ $payment->created_at->timezone('Asia/Kolkata')->format('h:i A') }} | View |
No Payments YetNo payment records found in the system. |
|||||||