/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $users = User::orderBy('id', 'DESC')->paginate();
     return view('admin.users.index', compact('users'));
 }