From 8896088425c3ee50a2cff0ca8a8db8449556b6d9 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Thu, 16 Jul 2026 12:10:19 +0000 Subject: [PATCH] chore(pricing): raise Care Pro to GHS 2490 per branch/mo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increase Care Pro monthly branch price by GHS 500 (1990 → 2490). --- app/Services/Care/PlanService.php | 2 +- config/care.php | 4 ++-- tests/Feature/CareProTest.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Services/Care/PlanService.php b/app/Services/Care/PlanService.php index 602c211..a8defaf 100644 --- a/app/Services/Care/PlanService.php +++ b/app/Services/Care/PlanService.php @@ -109,7 +109,7 @@ class PlanService { return (int) config( 'care.plans.pro.price_minor_per_branch', - config('care.plans.pro.price_minor', 199000), + config('care.plans.pro.price_minor', 249000), ); } diff --git a/config/care.php b/config/care.php index 86995c6..3c8e3ce 100644 --- a/config/care.php +++ b/config/care.php @@ -232,7 +232,7 @@ return [ 'pro' => [ 'label' => 'Pro', // Billed per active branch / month (unlimited branches). - 'price_minor_per_branch' => (int) env('CARE_PRO_PRICE_PER_BRANCH_MINOR', env('CARE_PRO_PRICE_MINOR', 199000)), + 'price_minor_per_branch' => (int) env('CARE_PRO_PRICE_PER_BRANCH_MINOR', env('CARE_PRO_PRICE_MINOR', 249000)), 'max_branches' => null, 'features' => [ 'branches', @@ -277,7 +277,7 @@ return [ 'upgrade_banner' => [ 'title' => 'Unlock Care Pro or Enterprise', - 'description' => 'Pro from GHS 1990/branch/mo — lab, pharmacy, billing, and Queue. Enterprise adds custom multi-dept workflows, analytics, priority support, and AI-assisted healthcare integration.', + 'description' => 'Pro from GHS 2490/branch/mo — lab, pharmacy, billing, and Queue. Enterprise adds custom multi-dept workflows, analytics, priority support, and AI-assisted healthcare integration.', 'route' => 'care.pro.index', ], diff --git a/tests/Feature/CareProTest.php b/tests/Feature/CareProTest.php index 3c4f2d1..c426001 100644 --- a/tests/Feature/CareProTest.php +++ b/tests/Feature/CareProTest.php @@ -59,7 +59,7 @@ class CareProTest extends TestCase ->get(route('care.pro.index')) ->assertOk() ->assertSee('Choose your Care plan') - ->assertSee('1990') + ->assertSee('2490') ->assertSee('4990') ->assertSee('/branch/mo') ->assertSee('Unlimited branches')