Bill Frontdesk Pro and Enterprise per branch.
Deploy Ladill Frontdesk / deploy (push) Successful in 47s

Pro is GHS 990/branch/mo and Enterprise is GHS 1990/branch/mo, with the
Care-style branch selector UI, self-serve Enterprise checkout, and renewal
charges scaled to billed branches.
This commit is contained in:
isaacclad
2026-07-16 00:42:34 +00:00
parent 3bbd1a8ddd
commit bdbf572f19
9 changed files with 295 additions and 61 deletions
+13 -6
View File
@@ -141,8 +141,15 @@ return [
],
'pro' => [
'label' => 'Pro',
// Aligned with Queue Pro (GHS 990/mo).
'price_minor' => (int) env('FRONTDESK_PRO_PRICE_MINOR', 99000),
// GHS 990/branch/mo (legacy FRONTDESK_PRO_PRICE_MINOR still honored).
'price_minor_per_branch' => (int) env(
'FRONTDESK_PRO_PRICE_PER_BRANCH_MINOR',
env('FRONTDESK_PRO_PRICE_MINOR', 99000),
),
'price_minor' => (int) env(
'FRONTDESK_PRO_PRICE_PER_BRANCH_MINOR',
env('FRONTDESK_PRO_PRICE_MINOR', 99000),
),
'max_branches' => null,
'max_kiosk_devices' => null,
'free_emails_per_month' => env('FRONTDESK_PRO_FREE_EMAILS_PER_MONTH') !== null
@@ -161,8 +168,8 @@ return [
],
'enterprise' => [
'label' => 'Enterprise',
// Aligned with Queue Enterprise (GHS 2990+/mo per branch).
'price_minor_per_branch' => (int) env('FRONTDESK_ENTERPRISE_PRICE_PER_BRANCH_MINOR', 299000),
// GHS 1990/branch/mo.
'price_minor_per_branch' => (int) env('FRONTDESK_ENTERPRISE_PRICE_PER_BRANCH_MINOR', 199000),
'max_branches' => null,
'max_kiosk_devices' => null,
'free_emails_per_month' => null,
@@ -180,7 +187,7 @@ return [
],
'enterprise' => [
'min_branches' => (int) env('FRONTDESK_ENTERPRISE_MIN_BRANCHES', 2),
'min_branches' => (int) env('FRONTDESK_ENTERPRISE_MIN_BRANCHES', 1),
],
'prepaid_months' => [6, 12, 24],
@@ -344,7 +351,7 @@ return [
'upgrade_banner' => [
'title' => 'Unlock Frontdesk Pro or Enterprise',
'description' => 'Unlimited kiosks, webhooks, iCal sync & scheduled reports — from GHS 990/mo.',
'description' => 'Unlimited kiosks, webhooks, iCal sync & scheduled reports — from GHS 990/branch/mo.',
'route' => 'frontdesk.pro.index',
],