@extends('adminlte::page') @section('title', 'Fee Statements') @section('content_header')
| Student | Bill ID | Total Amount | Amount Paid | Balance | Due Date | Status | - @forelse($invoices as $invoice)
|---|---|---|---|---|---|---|
| {{ $invoice->student->full_name ?? 'N/A' }} | {{ $invoice->bill_id }} | ${{ number_format($invoice->total_amount, 2) }} | ${{ number_format($invoice->amount_paid, 2) }} | ${{ number_format($invoice->balance, 2) }} | {{ \Carbon\Carbon::parse($invoice->due_date)->format('d M Y') }} | @if($invoice->status == 'paid') Paid @elseif($invoice->status == 'partial') Partial @else Unpaid @endif |
| No fee records found. | ||||||