Add Paystack, Flutterwave, and Hubtel for encounter billing.
Deploy Ladill Care / deploy (push) Successful in 1m0s

Clinics on Pro/Enterprise can connect their own gateway in Integrations and collect card or MoMo on bills with 0% Ladill fee, while cash payments and balance totals stay correct for pending checkouts.
This commit is contained in:
isaacclad
2026-07-16 10:24:28 +00:00
parent 068c5aa63f
commit 7a0a7fcb88
19 changed files with 1283 additions and 31 deletions
+78 -1
View File
@@ -8,9 +8,11 @@ use App\Models\Bill;
use App\Models\Visit;
use App\Services\Care\BillService;
use App\Services\Care\OrganizationResolver;
use App\Services\Payments\MerchantGatewayService;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\View\View;
use RuntimeException;
class BillController extends Controller
{
@@ -18,6 +20,7 @@ class BillController extends Controller
public function __construct(
protected BillService $bills,
protected MerchantGatewayService $gateway,
) {}
public function index(Request $request): View
@@ -62,14 +65,26 @@ class BillController extends Controller
->can($this->member($request), 'bills.manage');
$canPay = app(\App\Services\Care\CarePermissions::class)
->can($this->member($request), 'payments.manage');
$organization = $this->organization($request);
$gatewayConfigured = $this->gateway->isConfigured($organization);
$gateway = $this->gateway->settingFor($organization);
// Manual record form excludes gateway method (online checkout is separate).
$manualMethods = collect(config('care.payment_methods', []))
->except(['gateway'])
->all();
return view('care.bills.show', [
'bill' => $bill,
'statuses' => config('care.bill_statuses'),
'lineTypes' => config('care.bill_line_types'),
'paymentMethods' => config('care.payment_methods'),
'manualPaymentMethods' => $manualMethods,
'canManage' => $canManage,
'canPay' => $canPay,
'gatewayConfigured' => $gatewayConfigured,
'gatewayProvider' => $gateway?->provider,
'gatewayLabels' => config('care.payment_gateways'),
]);
}
@@ -119,12 +134,14 @@ class BillController extends Controller
$this->authorizeAbility($request, 'payments.manage');
$this->authorizeBill($request, $bill);
$manualMethods = array_keys(collect(config('care.payment_methods', []))->except(['gateway'])->all());
$this->bills->recordPayment(
$bill,
$this->ownerRef($request),
$request->validate([
'amount_minor' => ['required', 'integer', 'min:1'],
'method' => ['required', 'string', 'in:'.implode(',', array_keys(config('care.payment_methods')))],
'method' => ['required', 'string', 'in:'.implode(',', $manualMethods)],
'reference' => ['nullable', 'string', 'max:100'],
'notes' => ['nullable', 'string', 'max:500'],
]),
@@ -134,6 +151,66 @@ class BillController extends Controller
return back()->with('success', 'Payment recorded.');
}
public function startGatewayPayment(Request $request, Bill $bill): RedirectResponse
{
$this->authorizeAbility($request, 'payments.manage');
$this->authorizeBill($request, $bill);
$validated = $request->validate([
'amount_minor' => ['nullable', 'integer', 'min:1'],
]);
$amount = (int) ($validated['amount_minor'] ?? $bill->balance_minor);
try {
$result = $this->bills->startGatewayPayment(
$bill->loadMissing('patient'),
$this->organization($request),
$this->ownerRef($request),
$amount,
$request->user(),
$this->ownerRef($request),
);
} catch (RuntimeException|\InvalidArgumentException $e) {
return back()->with('error', $e->getMessage());
}
return redirect()->away($result['checkout_url']);
}
public function paymentCallback(Request $request): RedirectResponse|View
{
$reference = trim((string) (
$request->query('reference')
?: $request->query('tx_ref')
?: $request->query('clientReference')
?: ''
));
if ($reference === '') {
return view('care.bills.payment-return', [
'redirect' => route('care.bills.index'),
]);
}
try {
$payment = $this->bills->completeGatewayPayment($reference);
} catch (\Throwable) {
session()->flash('error', 'Payment could not be verified. If the customer was charged, re-check the bill or contact support with reference '.$reference.'.');
return view('care.bills.payment-return', [
'redirect' => route('care.bills.index'),
]);
}
$bill = $payment->bill;
session()->flash('success', 'Online payment recorded for '.$bill->invoice_number.'.');
return view('care.bills.payment-return', [
'redirect' => route('care.bills.show', $bill),
]);
}
public function void(Request $request, Bill $bill): RedirectResponse
{
$this->authorizeAbility($request, 'bills.manage');