|
|
Order confirmation
Thank you, {{ $recipientName }}
We’ve received your order and will prepare it for shipment. Your order number is
{{ $order->order_number }}.
|
@if(filled($order->customer_address))
| Ship to |
{{ $order->customer_address }} |
@endif
@if(filled($order->customer_phone))
| Phone |
{{ $order->customer_phone }} |
@endif
@if(filled($order->customer_email))
| Email |
{{ $order->customer_email }} |
@endif
| Order date |
{{ $order->placed_at?->format('F j, Y') ?? '—' }} |
| Payment |
{{ $paymentLabel }} |
@if(filled($order->coupon_code) && $discount > 0)
| Promo |
{{ $order->coupon_code }} |
@endif
@if($pay === PaymentMethod::Bkash && filled($order->bkash_sender_number))
| bKash wallet |
{{ $order->bkash_sender_number }} |
@endif
@if($pay === PaymentMethod::Bkash && filled($order->bkash_transaction_id))
| Transaction ID |
{{ $order->bkash_transaction_id }} |
@endif
| Status |
{{ ucfirst((string) ($order->status?->value ?? $order->status)) }} |
|
@if($pay === PaymentMethod::Cod)
|
You selected Cash on Delivery. Please have ৳ {{ number_format((float) $order->total, 2) }} ready when your parcel arrives.
|
@endif
@if(filled($order->notes))
|
Your note
{{ $order->notes }}
|
@endif
|
Your items
| Product |
Qty |
Total |
@foreach($order->items as $item)
| {{ $item->label_snapshot }} |
{{ $item->quantity }} |
৳ {{ number_format((float) $item->line_total, 2) }} |
@endforeach
| Subtotal |
৳ {{ number_format((float) $order->subtotal, 2) }} |
@if($discount > 0)
| Discount |
−৳ {{ number_format($discount, 2) }} |
@endif
| Delivery |
৳ {{ number_format((float) $order->delivery_fee, 2) }} |
| Total |
৳ {{ number_format((float) $order->total, 2) }} |
|
|
View your orders
|
|
Questions? Reply to this email or visit our store.
{{ config('app.name') }} · order confirmation
|