@foreach($airports as $airport) @endforeach
@sortablelink('icao', 'ICAO') @sortablelink('iata', 'IATA') @sortablelink('name', 'Name') @sortablelink('location', 'Location') @sortablelink('region', 'Region') @sortablelink('country', 'Country') @sortablelink('elevation', 'Elevation') @sortablelink('hub', 'Hub') @sortablelink('notes', 'Notes') GH Cost JetA 100LL MOGAS
{{ $airport->icao }} {{ $airport->iata }} {{ $airport->name }} {{ $airport->location }} {{ $airport->region }} {{ $airport->country }} {{ $airport->elevation }} @if($airport->hub === true) Hub @endif @if(filled($airport->notes)) Notes @endif {{ $airport->ground_handling_cost }} {{ $airport->fuel_jeta_cost }} {{ $airport->fuel_100ll_cost }} {{ $airport->fuel_mogas_cost }} {{ Form::open(['route' => ['admin.airports.destroy', $airport->id], 'method' => 'delete']) }} {{ Form::button('', ['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon', 'onclick' => "return confirm('Are you sure?')"]) }} {{ Form::close() }}