Payment Receipt

Payment Date
{{ \Carbon\Carbon::parse($payment->created_at ?? now())->format('F j, Y - g:i A') }}
Recipient
{{ $invoice->client->name ?? 'N/A' }}
Transaction ID
{{ $payment->transaction_id ?? 'N/A' }}
Payment Method
{{ ucfirst($payment->payment_method ?? 'PayPal') }}
Amount
${{ number_format($invoice->grand_total, 2) }}
Description
{{ $payment->description ?? 'Invoice Payment - ' . $invoice->no_reference }}