@extends('app') @section('title', 'Notams') @section('content') @if(!$notams->count())
@lang('DSpecial::common.no_notams')
@else
@foreach($notams as $notam)
{{ $notam->ident }} @if(filled($notam->ref_airline)) | {{ optional($notam->airline)->name }} @endif
A) {{ $notam->ref_airport ?? 'NIL'}}
B) {{ $notam->effectivefrom }}
C) {{ $notam->effectiveuntil }}
E) {!! str_replace($remove, '', $notam->body) !!}
@endforeach
@endif {{ $notams->links('pagination.default') }} @endsection