Order Confirmation
|
|
Hi {{ $user->name }},
Thank you for your order. Below are your order details.
Order #: {{ $order->order_number }}
Pickup Date: {{ \Carbon\Carbon::parse($order->pick_up_date)->format('d M Y') }}
Pickup Time: {{ $order->pick_up_time }}
|
| Product |
Qty |
Price |
Total |
@foreach($orderProducts as $item)
| {{ $item->product->product_name ?? 'N/A' }} |
{{ $item->quantity }} |
AED {{ number_format($item->price, 2) }} |
AED {{ number_format($item->total, 2) }} |
@endforeach
| Subtotal: |
AED {{ number_format($order->total, 2) }} |
| Tax: |
AED {{ number_format($order->vat, 2) }} |
| Shipping: |
AED {{ number_format($order->shipping_charge, 2) }} |
| Grand Total: |
AED {{ number_format($order->grand_total, 2) }} |
|
|
If you have any questions, feel free to contact our support team.
Thank you for shopping with {{ config('app.name') }}!
|
|
© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.
|
|