Order Information
Order Date {{ $order->order_date }}
Order Status {{ $order->status }}
Account Information
Customer Name {{ $order->name }}
Email {{ $order->email }}

@php $billing = $order->address('billing'); $shipping = $order->address('shipping'); @endphp
Billing Address
Name {{ $billing->first_name . ' ' . $billing->last_name }}
Email {{ $billing->email }}
Contact {{ $billing->contact_number }}
City {{ $billing->city }}
Province {{ $billing->province }}
Postal Code {{ $billing->postal_code }}
Address 1 {{ $billing->address_1 }}
Address 2 {{ $billing->address_2 }}
Shipping Address
Name {{ $shipping->first_name . ' ' . $shipping->last_name }}
Email {{ $shipping->email }}
Contact {{ $shipping->phone_number }}
City {{ $shipping->city }}
Province {{ $shipping->province }}
Postal Code {{ $shipping->postal_code }}
Address 1 {{ $shipping->address_1 }}
Address 2 {{ $shipping->address_2 }}

Payment Information
Payment Method Bambora
Currency USD
Payment Order Id order1-12174
Shipping Information
Shipping Method delivery
Shipping Price $0.00

@foreach ($order->items as $item) @endforeach
SKU Product Name Price Qty Subtotal Tax Percent Tax Amount Grand Total
{{ $item->sku }} {{ $item->name }} {{ $item->price }} {{ $item->qty }} {{ $item->sub_total }} {{ $item->tax_percent }} {{ $item->tax_amount }} {{ $item->grand_total }}
Subtotal - ${{ $order->sub_total }}
Taxable Product SubTotal - ${{ $order->tax_total }}
Discount - $0
Shipping Handling - $0.00
Tax 13% - ${{ $order->tax_total }}
Grand Total - ${{ $order->grand_total }}
Total Paid - ${{ $order->grand_total }}
Total Refunded - $0.00
Total Due - $0