@php $step_status = @$step_verified_data['step_status']; $flight_info = @$step_verified_data['flight_data']; @endphp

Departure flight Info

@if(empty($step_status))

This step is disable until user will reach to step.

@else
@if(!empty($flight_info))
Arrival Airport {{ $flight_info->airport_data->airport_label }}
Airline {{ $flight_info->airline }}
Flight Number {{ $flight_info->flight }}
Departure Time zone {{ $flight_info->dep_timezone_data->zone_label }}
Departure Date (cand time) {{ dateformat($flight_info->departure_date,DISPLAY_DATETIME) }}
@endif @endif