{{ $airport->full_name }}
@if (filled($airport->elevation))
{{ '| ' . $airport->elevation . 'ft' }}
@endif
{{-- Show the weather widget in one column --}}
{{ Widget::Weather(['icao' => $airport->icao]) }}
{{-- Show the airspace map in the other column --}}
{{ Widget::AirspaceMap(['width' => '100%', 'height' => '400px', 'lat' => $airport->lat, 'lon' => $airport->lon]) }}
@if (filled($airport->notes))
@endif
@if (count($airport->files) > 0 && Auth::check())
{{-- There are files uploaded and a user is logged in --}}