Files
panel/resources/js/navigation/horizontal/dashboard.js
2025-08-04 16:33:07 +03:30

44 lines
946 B
JavaScript

export default [
{
title: 'Dashboards',
icon: { icon: 'tabler-smart-home' },
children: [
{
title: 'Analytics',
to: 'dashboards-analytics',
icon: { icon: 'tabler-chart-pie-2' },
},
{
title: 'CRM',
to: 'dashboards-crm',
icon: { icon: 'tabler-cube' },
},
{
title: 'Ecommerce',
to: 'dashboards-ecommerce',
icon: { icon: 'tabler-shopping-cart' },
},
{
title: 'Academy',
to: 'dashboards-academy',
icon: { icon: 'tabler-book' },
},
{
title: 'Logistics',
to: 'dashboards-logistics',
icon: { icon: 'tabler-truck' },
},
{
title: 'Demo',
to: 'dashboards-demo',
icon: { icon: 'tabler-truck' },
},
{
title: 'Gantt',
to: 'dashboards-gantt',
icon: { icon: 'tabler-truck' },
},
],
},
]