From 3bbd1a8ddd7f3e8ba1eaea80b34f1417045c616f Mon Sep 17 00:00:00 2001 From: isaacclad Date: Wed, 15 Jul 2026 13:54:43 +0000 Subject: [PATCH] Align Frontdesk paid plans with Queue pricing. 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. --- config/frontdesk.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/config/frontdesk.php b/config/frontdesk.php index 7450539..7390a05 100644 --- a/config/frontdesk.php +++ b/config/frontdesk.php @@ -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', ],