New Order

Billing Detail

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}}

shipping Detail

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}}

Order Detail

@foreach($order->detail as $row) @endforeach
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)}}
Message: {{$row->order_remarks}}
Order Date:{{$row->order_date}}