/**
  * Get all users
  *
  * @return json
  */
 public function getUsers()
 {
     return response()->json(UserRepository::getUsers());
 }