/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     // Grab all the users
     $title = 'Users';
     $users = $this->userRepository->getAllPaginated(['roles', 'country'], 800);
     // Show the page
     return $this->render('admin.users.index', compact('users', 'title'));
 }