{{ $airport->full_name }}
{{-- 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))
{!! $airport->notes !!}
@endif
{{-- There are files uploaded and a user is logged in--}}
@if(count($airport->files) > 0 && Auth::check())
{{ trans_choice('common.download', 2) }}
@include('downloads.table', ['files' => $airport->files])
@endif