Receipt #:
{{ $payment->payment_number ?? 'PAY-001' }}
Date:
{{ ($payment->payment_date ?? now())->format('M d, Y H:i') }}
Method:
{{ ucfirst($payment->payment_method ?? 'Cash') }}
@if($payment->customer)
Customer:
{{ $payment->customer->name }}
@endif