Revenue Receipts

Incoming Fund Records

New Receipt
@forelse($receipts as $receipt) @empty @endforelse
Receipt # Payor Revenue Category Amount Status Actions
{{ $receipt->receipt_number }}
{{ \Carbon\Carbon::parse($receipt->receipt_date)->format('M d, Y') }}
{{ $receipt->payor_name }}
{{ $receipt->collectingAgency->name }}
{{ $receipt->coaCode->code }}
{{ $receipt->coaCode->name }}
${{ number_format($receipt->amount, 2) }} @if($receipt->status == 'Validated') Validated @elseif($receipt->status == 'Cancelled') Cancelled @else Draft @endif
@csrf @method('DELETE')
No receipts found
@if($receipts->hasPages())
{{ $receipts->links() }}
@endif