From 9538626b0390ea417dc4c162e91714c0ab40a58a Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 3 May 2019 18:32:30 +1000 Subject: [PATCH] Add Payment Repo --- app/Repositories/PaymentRepository.php | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 app/Repositories/PaymentRepository.php diff --git a/app/Repositories/PaymentRepository.php b/app/Repositories/PaymentRepository.php new file mode 100644 index 0000000000..63004d3327 --- /dev/null +++ b/app/Repositories/PaymentRepository.php @@ -0,0 +1,29 @@ +fill($request->input()); + + $payment->save(); + + return $payment; + } + +} \ No newline at end of file