@extends('app') @section('title', 'Tours') @section('content') @if(!$tours->count())
No Tours Found!
@else
@foreach($tours as $tour) @if($carbon_now >= $tour->start_date && $carbon_now <= $tour->end_date) @include('DSpecial::tours.table') @endif @endforeach
@foreach ($tours as $tour) @if($carbon_now < $tour->start_date) @include('DSpecial::tours.table') @endif @endforeach
@foreach ($tours as $tour) @if($carbon_now > $tour->end_date) @include('DSpecial::tours.table') @endif @endforeach
Tour Rules

• Tours can be flown and reported either manually or with acars support, for acars supported tour flights pilots can either bid/load a flight from the list or enter required info manually to New Flight window of our acars software. While sending a manual pirep or using acars with manual flight info entry, please do not forget to add correct route code and leg number to your reports. Missing this step may cause problems during route leg checks and award controls.

• Open Tours  can be flown with any airline and aircraft according to pilot's choice, simply there are no company and/or aircraft restrictions for this type. While on the other hand Airline Tours must be flown with correct airline callsign and if provided with the subfleet assigned to the leg.

• As a general rule, all tour legs must be completed between validity period for earning awards.

• To see the details and legs of a tour, simply click on the Tour Name

Safe Flights

@endif @endsection