Order Summary
ORDER DATE ORDER # PAYMENT METHOD TOTAL
{{ date('m/d/Y', strtotime($order->orderdate)) }} {{ $order->orderid }} {{ !empty($order->payment_transaction_id) ? $order->payment_transaction_id :"-" }} ${{ number_format((float)($order->paymentamount - ((float)$order->coupon_discount)), 2, '.', '') }}
SHIPPING METHOD NAME:
{{ !empty($order->shippingmethodname) ? $order->shippingmethodname :"-" }}
Bill Ship
@if (!empty($order->shipaddress2)) @endif
{{ $order->shipfirstname }} {{ $order->shiplastname }}
{{ $order->shipaddress1 }}
{{ $order->shipaddress2 }}
{{ $order->shipcity }}, {{ $order->shipstate }} {{ $order->shippostalcode }}
{{ $order->shipcountry }}
{{ $order->billingphonenumber }}
@if (!empty($order->billingaddress2)) @endif
{{ $order->billingfirstname }} {{ $order->billinglastname }}
{{ $order->billingaddress1 }}
{{ $order->billingaddress2 }}
{{ $order->billingcity }}, {{ $order->billingstate }} {{ $order->billingpostalcode }}
{{ $order->billingcountry }}
{{ $order->billingphonenumber }}
{{ $order->coustomer->emailaddress }}
@foreach ($order->orderdetail as $orderdetail) @endforeach
Product Qty Price
{{ (!empty($orderdetail->pin->Name))?$orderdetail->pin->Name:$orderdetail->productcode." Part" }}
Model: {{ $orderdetail->productcode }}
{{ $orderdetail->quantity }}
${{ $orderdetail->totalprice }}
Subtotal
${{ number_format((float)$order->paymentamount - $order->totalshippingcost, 2, '.', '') }}
Shipping
${{ number_format((float)$order->totalshippingcost, 2, '.', '') }}
Tax
${{ number_format((float)$order->salestax1, 2, '.', '') }}
Total
${{ number_format((float)$order->paymentamount, 2, '.', '') }}