Shipping Address Details:
Address 1: {{$order->address_1}}
Address 2: {{$order->address_2}}
{{$order->city}},
{{$order->zip_code}}
@if($order->state)
{{$order->state->title}}
@elseif($order->other_state)
{{$order->other_state}}
@endif
@if($order->country)
{{$order->country->title}}
@endif
|
Billing Address Details:
@if($order->billing_address)
Address 1: {{$order->billing_address->address_1}}
Address 2: {{$order->billing_address->address_2}}
{{$order->billing_address->city}},
{{$order->billing_address->zip_code}}
@if($order->billing_address->state)
{{$order->billing_address->state->title}}
@elseif($order->billing_address->other_state)
{{$order->billing_address->other_state}}
@endif
@if($order->billing_address->country)
{{$order->billing_address->country->title}}
@endif
@else
Address 1: {{$order->address_1}}
Address 2: {{$order->address_2}}
{{$order->city}},
{{$order->zip_code}}
@if($order->state)
{{$order->state->title}}
@elseif($order->other_state)
{{$order->other_state}}
@endif
@if($order->country)
{{$order->country->title}}
@endif
@endif
|