b @extends('layouts.master') @section('title', 'Fee Collection Report') @section('styles') @endsection @section('content')
| Invoice # | Client | Invoice Date | Total Amount | Amount Collected | Balance | Status |
|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->client->name ?? 'N/A' }} | {{ $invoice->invoice_date->format('Y-m-d') }} | ${{ number_format($invoice->total, 2) }} | ${{ number_format($collected, 2) }} | ${{ number_format($balance, 2) }} | {{ ucfirst(str_replace('_',' ',$status)) }} |
| No fee records found. | ||||||