@if($order->order_type==1)
Shipped To
Shipping Method: {{ $order->shipping_info->shipping_method->name ?? '' }}
Name: {{ $order_content->name ?? '' }}
Email: {{ $order_content->email ?? '' }}
Phone: {{ $order_content->phone ?? '' }}
City: {{ $order->shipping_info->city->name ?? '' }}
Postal Code: {{ $order_content->zip_code ?? ''}}
Address: {{ $order_content->address ?? '' }}
@endif
@if($order->order_type==0)
Name: {{ $order_content->name ?? '' }}
Email: {{ $order_content->email ?? '' }}
@endif
|
@if(!empty($location))
{{ $location->company_name }}
{{ $location->zip_code }}, {{ $location->address }}, {{ $location->city }}, {{ $location->state }}
Email: {{ $location->email }}
Phone: {{ $location->phone }}
@endif
|