Financial Record {{ $record->reference_code }}

Date: {{ $record->record_date?->format('M j, Y') }}

Client: {{ $record->client?->name }}
Phone: {{ $record->client?->full_phone }}
Event: {{ $record->event?->name }} ({{ $record->event?->reference_label }})
Total Amount Paid Amount Remaining Status
{{ $record->amount }} {{ $record->currency }} {{ $record->paid_amount }} {{ $record->currency }} {{ $record->remaining_amount }} {{ $record->currency }} {{ $record->status?->value }}
@if($record->transactions->isNotEmpty())
Transactions @foreach($record->transactions as $transaction) @endforeach
Date Amount Method Status Notes
{{ $transaction->paid_at?->format('M j, Y H:i') ?? $transaction->created_at?->format('M j, Y H:i') }} {{ $transaction->amount }} {{ $record->currency }} {{ $transaction->payment_method?->value }} {{ $transaction->status?->value }} {{ $transaction->notes }}
@endif @if($record->notes)
Notes

{{ $record->notes }}

@endif