{!! $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() !!}
|
@endforeach