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