# Payment Receipt
Dear {{ $payment->client?->name }},
Thank you — we have received your payment.
**Payment Date:** {{ \Carbon\Carbon::parse($payment->payment_date)->format('d M Y') }}
**Amount Received:** **{{ number_format($payment->amount, 2) }}**
**Payment Method:** {{ ucwords(str_replace('_', ' ', $payment->payment_method)) }}
@if($payment->reference_number)
**Reference:** {{ $payment->reference_number }}
@endif
If you have any questions about this payment, please contact us.
Thanks,
{{ config('app.name') }}