Thank you for your order, {{ $customerName }}
Order Number
#{{ $order->order_number }}
Order Date
{{ $order->created_at->format('d M Y, h:i A') }}
{{ $item['name'] ?? 'Product' }}
@if(!empty($item['meta_data'])) @foreach($item['meta_data'] as $meta) @if(!str_starts_with($meta['key'] ?? '', '_')) {{ $meta['display_key'] ?? $meta['key'] }}: {{ $meta['display_value'] ?? $meta['value'] }}@if(!$loop->last), @endif @endif @endforeach @endif
Qty: {{ $item['quantity'] ?? 1 }}
{{ $order->currency ?? 'RM' }} {{ number_format($item['total'] ?? 0, 2) }}
Payment Method
{{ $order->payment_method_title ?? $order->payment_method ?? 'N/A' }}
Status
Billing Address
{{ $billingAddress ?: 'N/A' }}
Phone: {{ $order->billing['phone'] }}
Email: {{ $order->billing['email'] }}
Shipping Address
{{ $shippingAddress ?: $billingAddress ?: 'N/A' }}
Phone: {{ $order->shipping['phone'] }}
We're preparing your order for shipment. You'll receive a notification with tracking information once your order has been shipped.
{{ $emailSettings['footer_text'] }}
{{ $companyInfo['name'] }}
{{ $companyInfo['address'] }}
Phone: {{ $companyInfo['phone'] }}
Email: {{ $companyInfo['email'] }}
© {{ date('Y') }} {{ $companyInfo['name'] }}. All rights reserved.