| Receipt No: |
{{ $payment->receipt_number }} |
Date: |
{{ $payment->created_at->format('d M Y, h:i A') }} |
| Student Name: |
{{ $payment->invoice->student->name }} |
Admission No: |
{{ $payment->invoice->student->studentProfile?->admission_number ?? '—' }} |
| Class: |
{{ $payment->invoice->student->studentProfile?->class_?->full_name ?? '—' }} |
Invoice No: |
{{ $payment->invoice->invoice_number }} |
| Fee Type: |
{{ $payment->invoice->feeStructure->name }} |
Payment Method: |
{{ str_replace('_', ' ', $payment->method) }} |
@if($payment->transaction_id)
| Transaction ID: |
{{ $payment->transaction_id }} |
@endif