Hi {{ $order->customer_name }},
Great news! Your payment has been successfully processed.
Great news! Your payment has been successfully processed.
ORDER NUMBER
{{ $order->order_number }}
{{ $order->currency ?? 'MYR' }} {{ number_format($order->total_amount, 2) }}
📋 Payment Details
@if($paymentForm)
Payment For
{{ $paymentForm->name }}
@endif
Payment Method
@if($order->payment_method === 'chipin')
Online Payment
@else
{{ ucfirst($order->payment_method) }}
@endif
Payment Status
@if($order->payment_status === 'paid')
✓ Paid
@else
Processing
@endif
Transaction Date
{{ $order->created_at->format('M d, Y H:i') }}
👤 Customer Information
Name
{{ $order->customer_name }}
Email
{{ $order->customer_email }}
@if($order->customer_phone)
Phone
{{ $order->customer_phone }}
@endif
Please keep this email for your records. If you have any questions about your payment, feel free to contact us.