Add Care Enterprise per-branch billing and Paystack prepaid plans.
Deploy Ladill Care / deploy (push) Successful in 1m46s

Mirrors Queue with GHS 499/branch Enterprise and 6/12/24 month Paystack checkout.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-30 01:55:38 +00:00
co-authored by Cursor
parent 4bc485dfea
commit 22646dfb62
10 changed files with 581 additions and 75 deletions
+3
View File
@@ -133,6 +133,9 @@ Route::middleware(['auth', 'platform.session'])->group(function () {
Route::get('/pro', [ProController::class, 'index'])->name('care.pro.index');
Route::post('/pro/subscribe', [ProController::class, 'subscribe'])->name('care.pro.subscribe');
Route::post('/pro/subscribe-enterprise', [ProController::class, 'subscribeEnterprise'])->name('care.pro.subscribe-enterprise');
Route::post('/pro/subscribe-prepaid', [ProController::class, 'subscribePrepaid'])->name('care.pro.subscribe-prepaid');
Route::get('/pro/paystack/callback', [ProController::class, 'paystackCallback'])->name('care.pro.paystack.callback');
Route::get('/branches', [BranchController::class, 'index'])->name('care.branches.index');
Route::get('/branches/create', [BranchController::class, 'create'])->name('care.branches.create');