| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/client-portal-laravel/releases/20260626120707/config/ |
Upload File : |
<?php
/**
* Settings navigation configuration.
*
* Defines the sidebar navigation structure for the settings module.
* Each category contains items that link to specific settings pages.
*/
return [
'categories' => [
'system' => [
'label' => 'System',
'icon' => 'cog-6-tooth',
'items' => [
[
'route' => 'admin.settings.index',
'label' => 'General',
'icon' => 'adjustments-horizontal',
'description' => 'Core application settings',
],
[
'route' => 'admin.settings.permissions.index',
'label' => 'Permissions',
'icon' => 'shield-check',
'description' => 'Role permissions matrix',
],
[
'route' => 'admin.settings.lead-scoring',
'label' => 'Lead Scoring',
'icon' => 'chart-bar',
'description' => 'Lead qualification rules',
],
[
'route' => 'admin.settings.audit-scoring',
'label' => 'Audit Scoring',
'icon' => 'clipboard-document-check',
'description' => 'Audit scoring methods and response types',
],
],
],
'scheduling' => [
'label' => 'Scheduling',
'icon' => 'calendar',
'items' => [
[
'route' => 'admin.settings.availability',
'label' => 'Availability',
'icon' => 'clock',
'description' => 'Working hours and availability',
],
],
],
'integrations' => [
'label' => 'Integrations',
'icon' => 'arrow-path',
'items' => [
[
'route' => 'admin.settings.package-sync',
'label' => 'Package Sync',
'icon' => 'arrow-path',
'description' => 'Download count sync settings',
],
],
],
'marketing' => [
'label' => 'Marketing',
'icon' => 'megaphone',
'items' => [
[
'route' => 'admin.settings.marketing',
'label' => 'Site Settings',
'icon' => 'globe-alt',
'description' => 'Marketing site features',
],
[
'route' => 'admin.social.index',
'label' => 'Social Media',
'icon' => 'share',
'description' => 'Social media integrations and auto-share',
],
[
'route' => 'admin.chatbot-settings.index',
'label' => 'Chatbot',
'icon' => 'chat-bubble-left-right',
'description' => 'Chatbot configuration',
],
],
],
'account' => [
'label' => 'My Account',
'icon' => 'user-circle',
'items' => [
[
'route' => 'profile.edit',
'label' => 'Profile',
'icon' => 'user',
'description' => 'Your profile information',
],
[
'route' => 'settings.notifications.index',
'label' => 'Notifications',
'icon' => 'bell',
'description' => 'Notification preferences',
],
[
'route' => 'admin.settings.calendar',
'label' => 'Calendar Integrations',
'icon' => 'calendar-days',
'description' => 'Connect Google Calendar and video conferencing',
],
],
],
],
];