$pirep_id, 'type' => $type, ]; switch ($type) { default: case AcarsType::FLIGHT_PATH: case AcarsType::LOG: $order_by = 'created_at'; break; case AcarsType::ROUTE: $order_by = 'order'; break; } return $this->orderBy($order_by, 'asc')->findWhere($where); } /** * Get all of the PIREPS that are in-progress, and then * get the latest update for those flights * * @param int $live_time Age in hours of the oldest flights to show * * @return Pirep */ public function getPositions($live_time = 0) { $q = Pirep::with(['airline', 'position', 'aircraft']) ->where(['state' => PirepState::IN_PROGRESS]); if ($live_time !== null && $live_time > 0) { $st = Carbon::now('UTC')->subHours($live_time); $q = $q->whereDate('created_at', '>=', $st); } $q = $q->orderBy('created_at', 'desc'); return $q->get(); } /** * @return $this */ public function getAllAcarsPoints() { return Pirep::with('acars')->where([ 'state' => PirepState::IN_PROGRESS, ]); } }