@extends('admin.app') @section('title', 'Disposable Runway Management') @section('content')

All of the fields are mandatory except ILS Frequency, Localizer Course and AIRAC cycle code.

This section is designed for quick management of a runway or some runways of an airport, it is not designed to insert all runways at once or for mass updating. I highly and kindly advise to keep your runways updated via direct database imports periodically.


© B.Fatih KOZ

Runway Management

{{-- Left Blank For Separation --}}
@if(!$runways)
@endif
{{-- Selected Airport's Runways --}} @if($runways)
@foreach($runways as $runway) @include('DBasic::admin.runway_form') @if(!$loop->last)
@endif @endforeach @endif {{-- New Runway Entry --}}
@include('DBasic::admin.runway_form', ['runway' => null])
{{-- Custom placeholder colors --}} @endsection @section('scripts') @parent @endsection