110 lines
2.7 KiB
PHP
110 lines
2.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'main' => [
|
|
[
|
|
'label' => 'nav.dashboard',
|
|
'route' => 'dashboard.index',
|
|
'icon' => 'home',
|
|
],
|
|
[
|
|
'label' => 'nav.assistant',
|
|
'route' => 'agent.index',
|
|
'icon' => 'sparkles',
|
|
],
|
|
[
|
|
'label' => 'nav.calendar',
|
|
'route' => 'calendar.index',
|
|
'icon' => 'calendar',
|
|
],
|
|
[
|
|
'label' => 'nav.tasks',
|
|
'route' => 'tasks.index',
|
|
'icon' => 'check-circle',
|
|
],
|
|
[
|
|
'label' => 'nav.notes',
|
|
'route' => 'notes.index',
|
|
'icon' => 'document-text',
|
|
],
|
|
[
|
|
'label' => 'nav.contacts',
|
|
'route' => 'contacts.index',
|
|
'icon' => 'users',
|
|
],
|
|
[
|
|
'label' => 'nav.activities',
|
|
'route' => 'activities.index',
|
|
'icon' => 'clock',
|
|
],
|
|
],
|
|
|
|
'admin' => [
|
|
[
|
|
'label' => 'nav.admin_dashboard',
|
|
'route' => 'admin.dashboard',
|
|
'icon' => 'chart-bar',
|
|
],
|
|
[
|
|
'label' => 'nav.admin_users',
|
|
'route' => 'admin.users.index',
|
|
'icon' => 'user-group',
|
|
],
|
|
[
|
|
'label' => 'nav.admin_affiliates',
|
|
'route' => 'admin.affiliates.index',
|
|
'icon' => 'gift',
|
|
],
|
|
[
|
|
'label' => 'nav.admin_plans',
|
|
'route' => 'admin.plans.index',
|
|
'icon' => 'credit-card',
|
|
],
|
|
[
|
|
'label' => 'nav.admin_translations',
|
|
'route' => 'admin.translations.index',
|
|
'icon' => 'language',
|
|
],
|
|
[
|
|
'label' => 'nav.admin_versions',
|
|
'route' => 'admin.versions.index',
|
|
'icon' => 'arrow-path',
|
|
],
|
|
],
|
|
|
|
'tools' => [
|
|
[
|
|
'label' => 'nav.integrations',
|
|
'route' => 'integrations.index',
|
|
'icon' => 'link',
|
|
],
|
|
[
|
|
'label' => 'nav.automations',
|
|
'route' => 'automations.index',
|
|
'icon' => 'bolt',
|
|
],
|
|
[
|
|
'label' => 'nav.subscription',
|
|
'route' => 'subscription.index',
|
|
'icon' => 'credit-card',
|
|
],
|
|
[
|
|
'label' => 'nav.invoices',
|
|
'route' => 'invoices.index',
|
|
'icon' => 'document-text',
|
|
],
|
|
[
|
|
'label' => 'nav.affiliate',
|
|
'route' => 'settings.affiliate',
|
|
'icon' => 'gift',
|
|
],
|
|
[
|
|
'label' => 'nav.settings',
|
|
'route' => 'settings.index',
|
|
'icon' => 'cog-6-tooth',
|
|
],
|
|
],
|
|
|
|
];
|