-
Notifications
You must be signed in to change notification settings - Fork 6
/
navigation.php
142 lines (141 loc) · 4.75 KB
/
navigation.php
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
return [
'v5' => [
'Prolog' => [
'children' => [
'Why Laravolt?' => 'introduction',
'Installation' => 'installation',
'Starter Kit' => 'starter-kit',
'Hello World' => 'hello-world',
// 'Sponsorship' => '#',
],
],
'Admin Panel' => [
'children' => [
'Anatomy' => '#',
'Menu' => 'menu',
'Action Button' => 'action-button',
'ACL' => 'acl',
'Flash Message (Toast)' => 'flash',
],
],
'Blade Components' => [
'children' => [
'Brand Image' => 'blade/brand-image',
'Breadcrumb' => 'blade/breadcrumb',
'Button' => 'blade/button',
'Card' => 'blade/card',
'Form' => 'blade/form',
'Icon' => 'blade/icon',
'Link' => 'blade/link',
'LinkButton' => 'blade/link-button',
'MediaLibrary' => 'blade/media-library',
'Panel' => 'blade/panel',
'Tab' => 'blade/tab',
],
],
'Livewire Components' => [
'children' => [
'Table' => 'table',
'Chart' => 'chart',
'Statistic' => 'statistic',
'Form' => 'form',
],
],
'Features' => [
'children' => [
'Auto CRUD' => 'auto-crud',
],
],
'Guideline' => [
'children' => [
'Code Quality' => 'code-quality',
'Controller' => 'controller',
'Editor & IDE' => 'editor-ide',
'Git Workflow' => 'git',
'Naming Things' => 'naming-things',
'Routes' => 'routes',
'Performance' => 'performance',
],
],
'How To' => [
'children' => [
'Membuat Authorized Menu' => 'membuat-authorized-menu',
'Integrasi React' => 'integrasi-react',
],
],
'Soal Latihan' => [
'children' => [
'Portal Berita' => 'latihan-portal-berita',
// 'Website Portal Berita' => 'latihan-website-portal-berita',
],
],
// 'Standalone Packages' => [
// 'children' => [
// 'laravolt/avatar' => '#',
// 'laravolt/metabase' => '#',
// 'laravolt/camunda' => '#',
// 'laravolt/indonesia' => '#',
// ],
// ],
// 'Epilog' => [
// 'children' => [
// 'Kontribusi' => '#',
// 'Panduan Penulisan' => '#',
// 'Hak Cipta' => '#',
// 'Logo' => '#',
// ],
// ],
],
'v4' => [
'Prolog' => [
'children' => [
'Introduction' => 'introduction',
'Installation' => 'installation',
'Building Application' => 'building-application',
'Customizing The UI' => 'customizing-the-ui',
],
],
'Guideline' => [
'children' => [
'Editor & IDE' => 'guidelines/editor-ide',
'Code Quality' => 'guidelines/code-quality',
'Naming Things' => 'guidelines/naming-things',
'File Permissions' => 'file-permissions',
'Git' => 'guidelines/git',
'Model' => 'guidelines/model',
'View' => 'guidelines/view',
'Controller' => 'guidelines/controller',
'Route' => 'guidelines/route',
],
],
'Packages' => [
'children' => [
'ACL' => 'acl',
'Lookup' => 'lookup',
'SemanticForm' => 'semantic-form',
'Suitable' => 'suitable',
'Thunderclap' => 'thunderclap',
],
],
'Surat Terbuka' => [
'children' => [
'Untuk System Analyst' => 'for-system-analyst',
'PHP: Security & Performance' => 'php-security-and-performance',
],
],
'Studi Kasus' => [
'children' => [
'Contact Form (Submission)' => 'studi-kasus/contact-form',
'Contact Form (Admin Page)' => 'studi-kasus/contact-form-2',
'Multiple File Upload' => 'studi-kasus/multiple-file-upload',
],
],
'Epilog' => [
'children' => [
'Kontribusi' => 'guidelines/contribution',
'Panduan Penulisan' => 'guidelines/typography',
],
],
],
];