/**
  * Add notification for all users
  * @param array $options
  * @return array|bool
  */
 public function addNotifyForAllUsers($options = [])
 {
     $options['user_id'] = Notify::All_USERS;
     return Notify::addNotify($options);
 }