@extends('layouts.master') @section('title', 'Fee Collection Report') @section('styles') @endsection @section('content')
| 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. | |||||