@extends('app') @section('title', $airport->full_name) @section('content')

{{ $airport->full_name }}

{{ Widget::airspaceMap([ 'width' => '100%', 'height' => '250px', 'lat' => $airport->lat, 'lon' => $airport->lon, ]) }}

Inbound Flights

@if(!$inbound_flights)
no flights found
@else @each('airports.table', $inbound_flights, 'flight') @endif

Outbound Flights

@each('airports.table', $outbound_flights, 'flight')
@endsection