From 1d50f10c3f789b9c843e7257f3226f2e3f772c9e Mon Sep 17 00:00:00 2001 From: isaacclad Date: Tue, 30 Jun 2026 00:32:54 +0000 Subject: [PATCH] Add Queue plan price defaults for Pro and Enterprise. Set Pro at GHS 99/mo and per-branch Enterprise at GHS 299+ in qms config. Co-authored-by: Cursor --- config/qms.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/qms.php b/config/qms.php index aecfaa0..f09a173 100644 --- a/config/qms.php +++ b/config/qms.php @@ -176,11 +176,19 @@ return [ 'plans' => [ 'free' => [ 'label' => 'Free', + 'price_minor' => 0, 'max_branches' => 1, 'max_queues' => 5, ], 'pro' => [ 'label' => 'Pro', + 'price_minor' => (int) env('QUEUE_PRO_PRICE_MINOR', 9900), + 'max_branches' => null, + 'max_queues' => null, + ], + 'enterprise' => [ + 'label' => 'Enterprise', + 'price_minor_per_branch' => (int) env('QUEUE_ENTERPRISE_PRICE_PER_BRANCH_MINOR', 29900), 'max_branches' => null, 'max_queues' => null, ],