Hi {{ $order['billing_firstname'] }},
We are delighted that you have chosen {{ env('APP_NAME') }} and we are pleased to confirm your order as follows.
Bill No: {{ $order['bill_no'] }}
Name: {{ $order['billing_firstname'] }} {{ $order['billing_lastname'] }}
Email Address: {{ $order['billing_email'] }}
Phone Number: {{ $order['billing_phone'] }}
Address: {{ $order['billing_address1'] }}, {{ $order['billing_address2'] }}
Country: {{ $order['billing_country'] }}
State: {{ $order['billing_state'] }}
City: {{ $order['billing_city'] }}
Payment Status: {{ $order['payment_status'] }}
Order Total: Dhs. {{ number_format($order['order_total'], 2) }}
Orders Items
Sl No |
Product |
Size |
Price |
Quantity |
Total Price |
@foreach ($order['items'] as $key=>$item)
{{ $key+1 }} |
{{ $item["title"] }} |
{{ $item["size"] }} |
{{ $item["price"] }} |
{{ $item["quantity"] }} |
{{ $item["total_price"] }} |
@endforeach
Sub Total |
Dhs. {{ number_format($order['sub_total'], 2) }} |
Discount |
Dhs. {{ number_format($order['promo_discount'], 2) }} |
Shipping Charge |
Dhs. {{ number_format($order['shipping_charge'], 2) }} |
VAT |
Dhs. {{ number_format($order['vat_price'], 2) }} |
Grand Total |
Dhs. {{ number_format($order['order_total'],2) }} |
By,
The {{ env('APP_NAME') }} Team
|