Your order is being processed
Hi {{ $order->user->first_name .' '. $order->user->last_name ?? 'Valued Customer' }},
Thank you for your order! We've received your request and are working to get your items ready. Here's what's happening next:
#{{ $order->id }}
{{ $order->created_at->format('F j, Y') }}
{{ ucfirst($order->order_status) }}
{{ DEFAULT_CURRENCY }} {{ number_format($order->order_amount, 2) }}
Item | Price | Qty | Total |
---|---|---|---|
{{ $productsFromDb[$product['id']]->name_en ?? ('Product #' . $product['id']) }} | {{ DEFAULT_CURRENCY }} {{ number_format($product['price'], 2) }} | {{ $product['quantity'] }} | {{ DEFAULT_CURRENCY }} {{ number_format($product['total'], 2) }} |
Grand Total | {{ DEFAULT_CURRENCY }} {{ number_format($order->order_amount, 2) }} |
{{ $order->shipping_address }}
📞 {{ $order->phone }}
📝 {{ $order->order_note ?: 'No special instructions' }}
Thank you for shopping with us!
The {{ config('app.name') }} Team