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, ],