@php $step_status = @$step_verified_data['step_status']; $flight_data = @$step_verified_data['flight_data']; $step_success = @$step_verified_data['is_step_success']; $is_itn_user = (!empty($portfolio->sponsor_agency_id) && $portfolio->sponsorAgency->checkAgencySync()) ? 1 : 0; $is_multi_placement = @$step_verified_data['is_multi_placement']; $second_flight_info = @$step_verified_data['second_flight_data']; @endphp

Arrival in the United States

@if(empty($step_status))

This step is disable until user will reach to step.

@else @if($is_multi_placement == true)
@if(!empty($flight_data)) @if($flight_data->is_date_passed == 1)

Welcome to The USA...

Start your program

@else

Your arrival date and time are recorded for {{ dateformat($flight_data->arrival_date,DISPLAY_DATETIME) }} according to following time zone @if(!empty($flight_data->zone_label)){{ $flight_data->zone_label }}@endif

@endif @else

This will be final step of your application.

@endif
@if(!empty($second_flight_info)) @if($second_flight_info->is_date_passed == 1)

Start your program

@else

Your arrival date and time are recorded for {{ dateformat($second_flight_info->arrival_date,DISPLAY_DATETIME) }} according to following time zone @if(!empty($second_flight_info->zone_label)){{ $second_flight_info->zone_label }}@endif

@endif @else

This will be final step of your application.

@endif
@else @if(!empty($flight_data)) @if($flight_data->is_date_passed == 1)

Welcome to The USA...

@else

Your arrival date and time are recorded for {{ dateformat($flight_data->arrival_date,DISPLAY_DATETIME) }} according to following time zone @if(!empty($flight_data->zone_label)){{ $flight_data->zone_label }}@endif

@endif @else

This will be final step of your application.

@endif

@if($step_success == 0 && $is_itn_user == 0) Arrived @endif @endif @endif