@extends('layouts.master') @section('title', 'Fee Collection Report') @section('styles') @endsection @section('content')
Back to Reports
Total Collected
${{ number_format($metrics['totalCollected'], 2) }}
Total Receipts
{{ $metrics['totalReceipts'] }}
Processed
{{ $metrics['processedReceipts'] ?? 0 }}
Draft Receipts
{{ $metrics['draftReceipts'] ?? 0 }}
Download PDF
@forelse ($receipts as $receipt) @empty @endforelse
Receipt # Client Receipt Date Payment Method Total Amount Status
{{ $receipt->receipt_number }} {{ $receipt->client->full_name ?? 'N/A' }} {{ optional($receipt->receipt_date)->format('Y-m-d') }} {{ $receipt->payment_methods_label ?: ($receipt->payment_method ?? 'N/A') }} ${{ number_format($receipt->total_amount, 2) }} {{ ucfirst(str_replace('_',' ', strtolower($receipt->status))) }}
No fee receipt records found.
@endsection