getBuilder()->withCount('eggs', 'nodes')->get($this->getColumns()); } /** * Return all of the mounts and their respective relations. * * @param string $id * @return mixed * * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function getWithRelations(string $id): Mount { try { return $this->getBuilder()->with('eggs', 'nodes')->findOrFail($id, $this->getColumns()); } catch (ModelNotFoundException $exception) { throw new RecordNotFoundException; } } }