forked from AmrNRD/QR-POC-Multi-Tenant-Laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtenant-navbar.json
executable file
·120 lines (118 loc) · 3.25 KB
/
tenant-navbar.json
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
116
117
118
119
120
[
{
"name": "users",
"icon": "nav-icon fas fa-user",
"route": "users.index",
"permission": "view-users",
"children": [
{
"name": "list users",
"route": "users.index",
"permission": "view-users"
},
{
"name": "create new user",
"route": "users.create",
"permission": "create-users"
}
]
},
{
"name": "employees",
"icon": "nav-icon fas fa-users",
"route": "employees.index",
"permission": "view-employees",
"children": [
{
"name": "list employees",
"route": "employees.index",
"permission": "view-employees"
},
{
"name": "create new employee",
"route": "employees.create",
"permission": "create-employees"
}
]
},
{
"name": "shifts",
"icon": "nav-icon fas fa-tachometer-alt",
"route": "shifts.index",
"permission": "view-shifts",
"children": [
{
"name": "list shifts",
"route": "shifts.index",
"permission": "view-shifts"
},
{
"name": "create new shift",
"route": "shifts.create",
"permission": "create-shifts"
}
]
},
{
"name": "employee shifts",
"icon": "nav-icon fas fa-tachometer-alt",
"route": "employee_shifts.index",
"permission": "view-employee-shifts",
"children": [
{
"name": "list employee shifts",
"route": "employee_shifts.index",
"permission": "view-employee-shifts"
},
{
"name": "create new employee shift",
"route": "employee_shifts.create",
"permission": "create-employee-shifts"
}
]
},
{
"name": "attendances",
"icon": "nav-icon fas fa-briefcase",
"route": "attendances.index",
"permission": "view-attendances",
"children": [
{
"name": "list attendances",
"route": "attendances.index",
"permission": "view-attendances"
}
]
},
{
"name": "holidays",
"icon": "nav-icon fas fa-calendar-week",
"route": "holidays.index",
"permission": "view-holidays",
"children": [
{
"name": "list holidays",
"route": "holidays.index",
"permission": "view-holidays"
},
{
"name": "create new holidays",
"route": "holidays.create",
"permission": "create-holidays"
}
]
},
{
"name": "devices",
"icon": "nav-icon fas fa-tablet",
"route": "devices.index",
"permission": "view-devices",
"children": [
{
"name": "list devices",
"route": "devices.index",
"permission": "view-devices"
}
]
}
]