Nest Branches and Team under Settings as Pro features.
Deploy Ladill Queue / deploy (push) Successful in 50s

Match Frontdesk: settings cards and nested routes, Pro-gated access,
and legacy /admin redirects to /settings/branches and /settings/team.
This commit is contained in:
isaacclad
2026-07-16 09:48:32 +00:00
parent 8be3eaeb4b
commit 26c9edc131
17 changed files with 629 additions and 165 deletions
+29
View File
@@ -180,6 +180,12 @@ return [
'price_minor' => 0,
'max_branches' => 1,
'max_queues' => 5,
'features' => [
'queues',
'tickets',
'counters',
'displays',
],
],
'pro' => [
'label' => 'Pro',
@@ -189,12 +195,35 @@ return [
),
'max_branches' => null,
'max_queues' => null,
'features' => [
'queues',
'tickets',
'counters',
'displays',
'branches',
'team',
'routing',
'integrations',
'reports',
],
],
'enterprise' => [
'label' => 'Enterprise',
'price_minor_per_branch' => (int) env('QUEUE_ENTERPRISE_PRICE_PER_BRANCH_MINOR', 449000),
'max_branches' => null,
'max_queues' => null,
'features' => [
'queues',
'tickets',
'counters',
'displays',
'branches',
'team',
'routing',
'integrations',
'reports',
'sla',
],
],
],