Fulfillment Details
@if(count($order['fulfillments']))
@if($order['fulfillments']['type'] == "SHIPMENT")
Ship to location
{!! $order['fulfillments']['name'] !!}
{!! @$order['fulfillments']['address']['organization'] !!}
{!! @$order['fulfillments']['address']['address_line_1'] !!}
{!! @$order['fulfillments']['address']['locality'].', '.@$order['fulfillments']['address']['administrative_district_level_1'].' '.@$order['fulfillments']['address']['postal_code'] !!}
Ship From Location
{!! @$order['fulfillments']['shipping_from'] !!}
Contact Information
@if(@$order['fulfillments']['phone'])
{!! @$order['fulfillments']['phone'] !!}
@endif
@if(@$order['fulfillments']['email'])
{!! @$order['fulfillments']['email'] !!}
@endif
Shipping Method
{!! @$order['fulfillments']['shipping_method'] !!}
@else
Contact information
{!! $order['fulfillments']['name'] !!}
@if(@$order['fulfillments']['phone'])
{!! @$order['fulfillments']['phone'] !!}
@endif
@if(@$order['fulfillments']['email'])
{!! @$order['fulfillments']['email'] !!}
@endif
Pickup Time
{!! $order['fulfillments']['pickup_time'] ? convertUtcToLocal(@$order['fulfillments']['pickup_time'], config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) : "-" !!}
Pickup Location
{!! @$order['fulfillments']['address']['organization'] !!}
{!! @$order['fulfillments']['address']['address_line_1'] !!}
{!! @$order['fulfillments']['address']['locality'].', '.@$order['fulfillments']['address']['administrative_district_level_1'].' '.@$order['fulfillments']['address']['postal_code'] !!}
@endif
@endif