/** * @return Collection */ public function getRoles() { return Role::where('name', 'guest')->get(); }
/** * @return \Illuminate\Support\Collection */ public function getAllRoles() { return $this->roleModel->newQuery()->get(); }