@foreach($flights as $flight) @endforeach
Flight # Dep Arr Alt Route Dpt Time Arr Time Notes Active Action
{!! $flight->airline_id !!}/{!! $flight->flight_number !!} (C: {!! $flight->route_code !!} L: {!! $flight->route_leg !!}) {!! $flight->dpt_airport->icao !!} {!! $flight->arr_airport->icao !!} {!! $flight->alt_airport->icao !!} {!! $flight->route !!} {!! $flight->dpt_time !!} {!! $flight->arr_time !!} {!! $flight->notes !!} {!! $flight->active !!} {!! Form::open(['route' => ['admin.flights.destroy', $flight->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}