@extends('layouts.master') @section('title', 'Fees Collection Report') @section('styles') @endsection @section('content')
Fee collection, total invoices & outstanding balances — all in one place
| Receipt # | Client | Receipt Date | Payment Method | Total Amount | Status |
|---|---|---|---|---|---|
| {{ $receipt->receipt_number }} | {{ $receipt->client->full_name ?? 'N/A' }} | {{ optional($receipt->receipt_date)->format('d M Y') }} | {{ $receipt->payment_methods_label ?: ($receipt->payment_method ?? 'N/A') }} | ${{ number_format($receipt->total_amount, 2) }} | @php $rcStatus = strtolower($receipt->status ?? ''); @endphp {{ ucfirst(str_replace('_', ' ', $rcStatus)) }} |
|
No fee receipt records found for the selected period. | |||||
| Client Name | Invoice # | Invoice Date | Due Date | Total Amount | Paid Amount | Balance Due | Status | Currency |
|---|
| Client Name | Invoice # | Invoice Date | Due Date | Total Amount | Paid Amount | Balance Due | Status | Days Overdue | Currency |
|---|---|---|---|---|---|---|---|---|---|
| {{ $invoice->customer->full_name ?? 'N/A' }} | {{ $invoice->invoice_number }} | {{ optional($invoice->invoice_date)->format('d M Y') }} | {{ optional($invoice->due_date_computed)->format('d M Y') }} | ${{ number_format((float)($invoice->total ?? 0), 2) }} | ${{ number_format((float)($invoice->paid_amount ?? 0), 2) }} | ${{ number_format($balanceDue, 2) }} | {{ ucfirst(str_replace('_', ' ', $statusLabel)) }} | {{ $daysOverdue > 0 ? $daysOverdue . ' days' : 'Current' }} | {{ $invoice->currency->currency_code ?? 'N/A' }} |
|
No outstanding fees found for the selected period. | |||||||||