From cd415e918f6b9f998b2dd298045fa65046733704 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Tue, 30 Jun 2026 00:32:53 +0000 Subject: [PATCH] Raise Care Pro to GHS 199/mo. Update plan config and billing service defaults to match suite pricing. Co-authored-by: Cursor --- app/Services/Care/PlanService.php | 2 +- config/care.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/Care/PlanService.php b/app/Services/Care/PlanService.php index 407feed..c12ea41 100644 --- a/app/Services/Care/PlanService.php +++ b/app/Services/Care/PlanService.php @@ -32,6 +32,6 @@ class PlanService public function proPriceMinor(): int { - return (int) config('care.plans.pro.price_minor', 15000); + return (int) config('care.plans.pro.price_minor', 19900); } } diff --git a/config/care.php b/config/care.php index e76685f..ceee2e1 100644 --- a/config/care.php +++ b/config/care.php @@ -212,7 +212,7 @@ return [ ], 'pro' => [ 'label' => 'Pro', - 'price_minor' => (int) env('CARE_PRO_PRICE_MINOR', 15000), + 'price_minor' => (int) env('CARE_PRO_PRICE_MINOR', 19900), 'max_branches' => null, ], ],