forked from laravel-shift/blueprint-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigation.php
35 lines (34 loc) · 1.24 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
<?php
return [
'Getting Started' => [
'url' => '/docs/getting-started',
'children' => [
'Installation' => '/docs/installation',
'Generating Components' => '/docs/generating-components',
'Available Commands' => '/docs/available-commands',
],
],
'Defining Models' => [
'url' => '/docs/defining-models',
'children' => [
'Types & Modifiers' => '/docs/model-data-types',
'Keys and Indexes' => '/docs/keys-and-indexes',
'Relationships' => '/docs/model-relationships',
'Shorthands' => '/docs/model-shorthands',
'Generating Seeders' => '/docs/generating-database-seeders',
],
],
'Defining Controllers' => [
'url' => '/docs/defining-controllers',
'children' => [
'Statements' => '/docs/controller-statements',
'Model References' => '/docs/model-references',
'Shorthands' => '/docs/controller-shorthands',
'Generated Tests' => '/docs/generated-tests',
],
],
'Configuration' => '/docs/advanced-configuration',
'Extending' => '/docs/extending-blueprint',
'Contributing' => '/docs/contributing',
'Videos' => '/docs/videos'
];