Gate Care branch management behind Pro like Frontdesk.
Deploy Ladill Care / deploy (push) Successful in 1m25s

Free plans keep a single setup branch but get an upgrade screen for Branches; Pro/Enterprise unlock multi-branch management via plan features.
This commit is contained in:
isaacclad
2026-07-16 09:14:58 +00:00
parent 0181c958f5
commit 85eb04d2a3
9 changed files with 185 additions and 8 deletions
+16
View File
@@ -216,12 +216,21 @@ return [
'price_minor' => 0,
'max_branches' => 1,
// Free: core patient records, appointments & consults, basic workflows only.
// One branch is created during onboarding; multi-branch management is Pro.
'features' => [],
],
'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)),
'max_branches' => null,
'features' => [
'branches',
'lab',
'pharmacy',
'billing',
'queue_integration',
],
],
'enterprise' => [
'label' => 'Enterprise',
@@ -229,6 +238,13 @@ return [
// Differentiator: multi-dept custom workflows, priority support, analytics, AI.
'price_minor_per_branch' => (int) env('CARE_ENTERPRISE_PRICE_PER_BRANCH_MINOR', env('CARE_ENTERPRISE_PRICE_MINOR', 499000)),
'max_branches' => null,
'features' => [
'branches',
'lab',
'pharmacy',
'billing',
'queue_integration',
],
],
],