@vite(['resources/css/app.css', 'resources/js/app.js'])

Morbrick Systems Ltd

{{ $receipt->voided_at ? 'Receipt invalidated' : 'Receipt verified' }}

Receipt number

{{ $receipt->receipt_number }}

{{ $receipt->voided_at ? 'Voided' : 'Valid' }}
@if($receipt->voided_at)

This receipt is no longer valid.

{{ $receipt->void_reason }}

Invalidated {{ $receipt->voided_at->format('d M Y H:i') }}

@endif
Customer
{{ $receipt->payment->invoice->customer->name }}
Invoice
{{ $receipt->payment->invoice->invoice_number }}
Payment method
{{ $receipt->payment->paymentMethod->name }}
Date paid
{{ $receipt->payment->paid_at->format('d M Y') }}

Amount received

{{ $receipt->payment->currency }} {{ number_format((float) $receipt->payment->amount, 2) }}