@foreach($airports as $airport) @endforeach
ICAO Name Location Action
{!! $airport->icao !!} {!! $airport->name !!} {!! $airport->location !!} ({!! $airport->lat !!}x{!! $airport->lon !!}) {!! Form::open(['route' => ['admin.airports.destroy', $airport->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}