{{ $school->address }}
| Receipt No. | {{ $payment->receipt_number }} |
| Date | {{ $payment->created_at->format('d M, Y') }} |
| Student | {{ $student->full_name }} |
| Admission No. | {{ $student->admission_number }} |
| Class | {{ $student->classArm->schoolClass->name }} {{ $student->classArm->name }} |
| Payment Method | {{ strtoupper($payment->method) }} |
| Invoice No. | {{ $invoice->invoice_number }} |
| Invoice Total | ₦{{ number_format($invoice->total_amount, 2) }} |
| Total Paid to Date | ₦{{ number_format($invoice->amount_paid, 2) }} |
| Balance Remaining | ₦{{ number_format($invoice->balance, 2) }} |