Name: {{$order->billing->firstname.' '.$order->billing->lastname}}
Address: {{$order->billing->address}},
City: {{$order->billing->city}}
Zip: {{$order->billing->zip}}
Country: {{$order->billing->country->country_name}}
Email : {{$order->billing->email}}
Phone: {{$order->billing->phone}}
Mobile: {{$order->billing->mobile}}
Name: {{$order->shipping->firstname.' '.$order->shipping->lastname}}
Address: {{$order->shipping->address}},
City: {{$order->shipping->city}}
Zip: {{$order->shipping->zip}}
Country: {{$order->shipping->country->country_name}}
Email : {{$order->shipping->email}}
Phone: {{$order->shipping->phone}}
Mobile: {{$order->shipping->mobile}}
| Product | Size | Quantity | Price | Amount |
|---|---|---|---|---|
| {{ $row->product_name}} - {{$row->product_color}} | {{$row->size}} | {{$row->quantity}} | {{number_format($row->price,2)}} | ${{number_format(($row->price*$row->quantity),2)}} |