Amount Received: {{ number_format($receipt->amount, 2) }}
@if ($receipt->paymentAllocations->isNotEmpty())
Allocated To
| Invoice |
Amount |
@foreach ($receipt->paymentAllocations as $allocation)
| {{ $allocation->invoice?->invoice_number ?? '—' }} |
{{ number_format($allocation->allocated_amount, 2) }} |
@endforeach
@endif
@if ($receipt->notes)
Notes: {{ $receipt->notes }}
@endif