distance instanceof Distance) { $pirep['distance'] = $this->distance->toObject(); } if ($this->fuel_used instanceof Fuel) { $pirep['fuel_used'] = $this->fuel_used->toObject(); } if ($this->planned_distance instanceof Distance) { $pirep['planned_distance'] = $this->planned_distance->toObject(); } /* * Relationship fields */ $pirep['airline'] = new Airline($this->airline); $pirep['dpt_airport'] = new Airport($this->dpt_airport); $pirep['arr_airport'] = new Airport($this->arr_airport); $pirep['position'] = new Acars($this->position); $pirep['comments'] = PirepComment::collection($this->comments); $pirep['user'] = [ 'id' => $this->user->id, 'name' => $this->user->name, 'home_airport_id' => $this->user->home_airport_id, 'curr_airport_id' => $this->user->curr_airport_id, ]; $pirep['fields'] = $this->fields; return $pirep; } }