/**
  * 获取系统管理员信息
  *
  * @return array
  */
 public static function getSystemAdmin()
 {
     $founder = explode(',', str_replace(' ', '', Config::get('auth.founder')));
     $founders = User::whereIn('id', $founder)->get();
     return $founders;
 }