@extends('adminlte::page') @section('title', 'Record Payment') @section('content_header')
| Student Name | {{ $studentBill->student->first_name }} {{ $studentBill->student->last_name }} |
|---|---|
| Bill | {{ $studentBill->bill->title ?? 'Unnamed Bill' }} |
| Total Amount | {{ number_format($studentBill->total_amount, 2) }} |
| Amount Paid | {{ number_format($studentBill->amount_paid, 2) }} |
| Remaining Balance | {{ number_format($studentBill->balance, 2) }} |
| Status | {{ ucfirst($studentBill->status ?? 'unpaid') }} |
| Due Date | {{ $studentBill->due_date ? $studentBill->due_date->format('Y-m-d') : '-' }} |