/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $users = $this->user->paginate(10);
     return view('backend.users.index', compact('users'));
 }