public function haveMissingUser($userIds)
 {
     return User::whereIn("id", $userIds)->count() <= 0;
 }