{!! Form::label('id', 'Id:') !!}

{!! $flight->id !!}

{!! Form::label('airline_id', 'Airline Id:') !!}

{!! $flight->airline_id !!}

{!! Form::label('flight_number', 'Flight Number:') !!}

{!! $flight->flight_number !!}

{!! Form::label('route_code', 'Route Code:') !!}

{!! $flight->route_code !!}

{!! Form::label('route_leg', 'Route Leg:') !!}

{!! $flight->route_leg !!}

{!! Form::label('dpt_airport_id', 'Dpt Airport Id:') !!}

{!! $flight->dpt_airport_id !!}

{!! Form::label('arr_airport_id', 'Arr Airport Id:') !!}

{!! $flight->arr_airport_id !!}

{!! Form::label('alt_airport_id', 'Alt Airport Id:') !!}

{!! $flight->alt_airport_id !!}

{!! Form::label('route', 'Route:') !!}

{!! $flight->route !!}

{!! Form::label('dpt_time', 'Dpt Time:') !!}

{!! $flight->dpt_time !!}

{!! Form::label('arr_time', 'Arr Time:') !!}

{!! $flight->arr_time !!}

{!! Form::label('notes', 'Notes:') !!}

{!! $flight->notes !!}

{!! Form::label('active', 'Active:') !!}

{!! $flight->active !!}

{!! Form::label('created_at', 'Created At:') !!}

{!! $flight->created_at !!}

{!! Form::label('updated_at', 'Updated At:') !!}

{!! $flight->updated_at !!}