model = app($this->getModelClass()); // This instantiation may fail during a console command if e.g. APP_KEY is empty, // rendering the whole installation failing. try { $this->auth = app(Guard::class); } catch (Exception $e) { } } public function getOneById($id): ?Model { return $this->model->find($id); } public function getByIds(array $ids): Collection { return $this->model->whereIn($this->model->getKeyName(), $ids)->get(); } public function getAll(): Collection { return $this->model->all(); } public function getFirstWhere(...$params): Model { return $this->model->where(...$params)->first(); } }