Payment Receipt
Placed {{ $order->created_at->format('F d, Y \a\t h:i A') }}
{{ format_price($order->total_amount) }}
Customer
{{ $order->customer->name }}
{{ $order->customer->email }}
@if($order->customer->phone){{ $order->customer->phone }}
@endifMerchant
{{ $order->merchant->isAdmin() ? 'Phantom 5 Merchant' : ($order->merchant->merchantProfile->business_name ?? $order->merchant->name) }}
@if($order->merchant->merchantProfile && $order->merchant->merchantProfile->business_phone){{ $order->merchant->merchantProfile->business_phone }}
@endif{{ $item->itemable->name ?? $item->itemable->title ?? 'Item' }}
Qty: {{ $item->quantity }} x {{ format_price($item->unit_price) }}
{{ format_price($item->subtotal) }}
Method: {{ $order->payment->payment_method->label() }}
@if($order->payment->reference_number)Ref: {{ $order->payment->reference_number }}
@endif @if($order->payment->bank_name)Bank: {{ $order->payment->bank_name }}
@endifConfirmed on {{ $order->payment->confirmed_at->format('M d, Y \a\t h:i A') }}
@endifTransfer payment to:
Bank: {{ $bankDetails['bank_name'] }}
Account Name: {{ $bankDetails['account_name'] }}
Account Number: {{ $bankDetails['account_number'] }}
Phantom 5
Thank you for your purchase!
This is a computer-generated receipt and does not require a signature.