Add Queue plan price defaults for Pro and Enterprise.
Deploy Ladill Queue / deploy (push) Successful in 45s

Set Pro at GHS 99/mo and per-branch Enterprise at GHS 299+ in qms config.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-30 00:32:54 +00:00
co-authored by Cursor
parent c3e1609578
commit 1d50f10c3f
+8
View File
@@ -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,
],