{{----}}

{!! Form::label('dpt_airport_id', 'Dep ICAO') !!}

{!! $pirep->dpt_airport->icao !!} - {!! $pirep->dpt_airport->name !!}

{{----}}

{!! Form::label('arr_airport_id', 'Arrival ICAO') !!}

{!! $pirep->arr_airport->icao !!} - {!! $pirep->arr_airport->name !!}

{!! Form::label('user_id', 'Pilot:') !!}

{!! $pirep->user->name !!}

{!! Form::label('aircraft_id', 'Aircraft:') !!}

{!! $pirep->aircraft->subfleet->name !!}, {!! $pirep->aircraft->name !!} ({!! $pirep->aircraft->registration !!})

{!! Form::label('flight_time', 'Flight Time:') !!}

{!! Utils::secondsToTime($pirep->flight_time) !!}

{!! Form::label('level', 'Level:') !!}

{!! $pirep->level !!}

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

{!! $pirep->route !!}

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

{!! $pirep->notes !!}

{!! Form::label('raw_data', 'Raw Data:') !!}

{!! $pirep->raw_data !!}

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

{!! $pirep->created_at !!}

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

{!! $pirep->updated_at !!}