Date: {{ $order['created_at'] }}
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'] }}
City: {{ $order['billing_city'] }}
State: {{ $order['billing_state'] }}
Country: {{ $order['billing_country'] }}
Payment Status: {{ $order['payment_status'] }}
Order Total: {{ $order['order_total'] }}
Order 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 |
{{ $order['sub_total'] }} |
Discount |
{{ $order['promo_discount'] }} |
Shipping Charge |
{{ $order['shipping_charge'] }} |
VAT |
{{ $order['vat_price'] }} |
Grand Total |
{{ $order['order_total'] }} |
By,
The {{ env('APP_NAME') }} Team
|