/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $holders = Holder::paginate(15);
     return view('holder.index', compact('holders'));
 }