@csrf
Payment Confirmation
Invoice Information

Invoice No: {{ $item->invoice_no }}
Invoice Date: {{ $item->invoice_date ? $item->invoice_date->format('Y-m-d') : '' }}
Amount: {{ number_format($item->amount, 2) }}
Bill Type: {{ $item->billType?->name ?? '' }}
Payment Status: {{ ucfirst($item->payment_status) }}
Member: {{ $item->member?->name ?? '' }}
Last Due Date: {{ $item->last_due_date ? $item->last_due_date->format('d/m/Y') : '' }}
Bill Period: {{ $item->bill_period }}
Bill Period Start: {{ $item->bill_period_start ? $item->bill_period_start->format('d/m/Y') : '' }}
Bill Period End: {{ $item->bill_period_end ? $item->bill_period_end->format('d/m/Y') : '' }}
Remark: {{ $item->remark }}
Payment Made: {{ $item->is_payment_submit ? 'Yes' : 'No' }}