Align Frontdesk paid plans with Queue pricing.
Deploy Ladill Frontdesk / deploy (push) Successful in 1m4s

Pro is GHS 990/mo and Enterprise is GHS 2990+/mo per branch instead of custom sales-only enterprise.

Includes the suite-wide tenfold paid-plan update.
This commit is contained in:
isaacclad
2026-07-15 13:54:43 +00:00
parent 4d846dbcf3
commit 3bbd1a8ddd
+9 -2
View File
@@ -141,7 +141,8 @@ return [
],
'pro' => [
'label' => 'Pro',
'price_minor' => (int) env('FRONTDESK_PRO_PRICE_MINOR', 7900),
// Aligned with Queue Pro (GHS 990/mo).
'price_minor' => (int) 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
@@ -160,6 +161,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),
'max_branches' => null,
'max_kiosk_devices' => null,
'free_emails_per_month' => null,
@@ -176,6 +179,10 @@ return [
],
],
'enterprise' => [
'min_branches' => (int) env('FRONTDESK_ENTERPRISE_MIN_BRANCHES', 2),
],
'prepaid_months' => [6, 12, 24],
'notification_events' => [
@@ -337,7 +344,7 @@ return [
'upgrade_banner' => [
'title' => 'Unlock Frontdesk Pro or Enterprise',
'description' => 'Unlimited kiosks, webhooks, iCal sync & scheduled reports — from GHS 79/mo.',
'description' => 'Unlimited kiosks, webhooks, iCal sync & scheduled reports — from GHS 990/mo.',
'route' => 'frontdesk.pro.index',
],