apps.js
3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
export default [
{
title: 'Apps',
icon: { icon: 'ri-mail-open-line' },
children: [
{
title: 'eCommerce',
icon: { icon: 'ri-shopping-cart-2-line' },
children: [
{
title: 'Dashboard',
to: 'apps-ecommerce-dashboard',
},
{
title: 'Product',
children: [
{ title: 'List', to: 'apps-ecommerce-product-list' },
{ title: 'Add', to: 'apps-ecommerce-product-add' },
{ title: 'Category', to: 'apps-ecommerce-product-category-list' },
],
},
{
title: 'Order',
children: [
{ title: 'List', to: 'apps-ecommerce-order-list' },
{ title: 'Details', to: { name: 'apps-ecommerce-order-details-id', params: { id: '9042' } } },
],
},
{
title: 'Customer',
children: [
{ title: 'List', to: 'apps-ecommerce-customer-list' },
{ title: 'Details', to: { name: 'apps-ecommerce-customer-details-id', params: { id: 478426 } } },
],
},
{
title: 'Manage Review',
to: 'apps-ecommerce-manage-review',
},
{
title: 'Referrals',
to: 'apps-ecommerce-referrals',
},
{
title: 'Settings',
to: 'apps-ecommerce-settings',
},
],
},
{
title: 'Academy',
icon: { icon: 'ri-book-open-line' },
children: [
{ title: 'Dashboard', to: 'apps-academy-dashboard' },
{ title: 'My Course', to: 'apps-academy-my-course' },
{ title: 'Course Details', to: 'apps-academy-course-details' },
],
},
{
title: 'Logistics',
icon: { icon: 'ri-truck-line' },
children: [
{ title: 'Dashboard', to: 'apps-logistics-dashboard' },
{ title: 'Fleet', to: 'apps-logistics-fleet' },
],
},
{
title: 'Email',
icon: { icon: 'ri-mail-line' },
to: 'apps-email',
},
{
title: 'Chat',
icon: { icon: 'ri-message-line' },
to: 'apps-chat',
},
{
title: 'Calendar',
to: 'apps-calendar',
icon: { icon: 'ri-calendar-line' },
},
{
title: 'Kanban',
icon: { icon: 'ri-drag-drop-line' },
to: 'apps-kanban',
},
{
title: 'Invoice',
icon: { icon: 'ri-article-line' },
children: [
{ title: 'List', to: 'apps-invoice-list' },
{ title: 'Preview', to: { name: 'apps-invoice-preview-id', params: { id: '5036' } } },
{ title: 'Edit', to: { name: 'apps-invoice-edit-id', params: { id: '5036' } } },
{ title: 'Add', to: 'apps-invoice-add' },
],
},
{
title: 'User',
icon: { icon: 'ri-user-line' },
children: [
{ title: 'List', to: 'apps-user-list' },
{ title: 'View', to: { name: 'apps-user-view-id', params: { id: 21 } } },
],
},
{
title: 'Roles & Permissions',
icon: { icon: 'ri-shield-user-line' },
children: [
{ title: 'Roles', to: 'apps-roles' },
{ title: 'Permissions', to: 'apps-permissions' },
],
},
],
},
]