Issued to
{{ $note->customer?->display_name }}
{{ $note->customer?->customer_number }}
@if ($note->customer?->billing_address)
{{ $note->customer->billing_address }}
@endif
@if ($note->customer?->city)
{{ $note->customer->city }}
@endif
@if ($note->customer?->email)
{{ $note->customer->email }}
@endif
Against invoice
@if ($note->invoice)
{{ $note->invoice->invoice_number }}
Issued {{ $note->invoice->issue_date?->format('d M Y') }}
Invoice total {{ money($note->invoice->total) }}
@else
No invoice recorded
@endif