public function getPaginated($howMany = 25)
 {
     return User::orderBy('username', 'asc')->paginate($howMany);
 }