/**
  * Display a listing of the resource.
  * GET /users
  *
  * @return Response
  */
 public function index()
 {
     $pagetitle = 'User List';
     $user = User::appusers();
     return View::make('user.index', compact('pagetitle', 'user'));
 }