@extends('app') @section('title', 'Flight '.$flight->ident) @section('content')

{{ $flight->ident }} - {{ $flight->dpt_airport->full_name }} to {{ $flight->arr_airport->full_name }}

Departure {{ $flight->dpt_airport->icao }} @ {{ $flight->dpt_time }}
Arrival {{ $flight->arr_airport->icao }} @ {{ $flight->arr_time }}
Route Code/Leg: {{ $flight->route_code ?: '-' }}/{{ $flight->route_leg ?: '-' }}
Alternate Airport @if($flight->alt_airport_id) {{ $flight->alt_airport->full_name }} @else - @endif
Route {{ $flight->route }}
Notes {{ $flight->notes }}
@include("flights.map") @endsection