{!! Form::select("period", ["" => "Select", "default" => "Roster + 28 Days", "planned" => "Current Roster", "last7days" => "Last 7 Days", "last28days" => "Last 28 Days", "last90days"=>"Last 90 Days", "last365days" => "Last 365 Days"], \request("period"), ["class"=>"form-control singleselect marginRight"]) !!}
{!! Form::label('rosterFrom', trans("content.from")) !!} {!! Form::text('rosterFrom', \request("rosterFrom"), ['class' => 'form-control dateFrom inputDateSmall']) !!} {!! Form::label('rosterTo', trans("content.to")) !!} {!! Form::text('rosterTo', \request("rosterTo"), ['class' => 'form-control dateTo inputDateSmall']) !!} {!! Form::submit("Submit", ["class" => "btn btn-primary btn-sm"]) !!} {!! Form::hidden("id", \request("id")) !!} {!! Form::hidden("tabSelected", "standby") !!}
@if (!count($standbyFlights))

No Results!

Not found any flight for this user

@else
@php $j = 0; @endphp @if (!(isset($standbyFlights) && $standbyFlights->count()))

No Results!

Not found any flight for this user

@else @foreach($standbyFlights as $i => $flight) @php $fdpClass = $i % 2 == 0 ? "fdp-alter" : "" @endphp @php $class = $flight->is_standby ? 'Standby' : ($flight->is_dhc ? 'DHC' : '') @endphp @if ($flight->atd && $flight->atd != EMPTY_DATETIME && $flight->ata && $flight->ata != EMPTY_DATETIME) @else @endif @endforeach @endif
No. @lang("content.status") @lang("content.aircraft") @lang("content.flight") @lang("content.route") @lang("content.departure_datetime") @lang("content.arrival_datetime") @lang("content.duration")
{{ ++$j}} {!! $class !!} aircraft_id}&period=period&period_field=last_28_days") }}">{{ $flight->aircraft_name }} id}") }}">{{ $CURRENT_IATA_CODE.'-'.$flight->flight_number }} {{ $flight->departure_airport . "-" . $flight->arrival_airport }}ATD{{ dmy_format($flight->atd, 'time') }} ATA{{ dmy_format($flight->ata, 'time') }} {{ hoursToTime(Calculate_Duration($flight->atd, $flight->ata), true) }}STD{{ dmy_format($flight->std, 'time') }} STA{{ dmy_format($flight->sta, 'time') }} {{ hoursToTime(Calculate_Duration($flight->std, $flight->sta), true) }}
@endif