/**
  * Display a listing of the Avator.
  *
  * @return Response
  */
 public function index()
 {
     $avators = $this->avatorRepository->paginate(10);
     return view('avators.index')->with('avators', $avators);
 }