Gate Care branch management behind Pro like Frontdesk.
Deploy Ladill Care / deploy (push) Successful in 1m25s
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:
@@ -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',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user