mirror of
https://github.com/stancl/tenancy-docs.git
synced 2025-12-12 10:14:03 +00:00
106 lines
4.2 KiB
PHP
106 lines
4.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'v1' => [
|
|
'Getting Started' => [
|
|
'url' => 'getting-started',
|
|
'children' => [
|
|
'Installation' => 'installation',
|
|
'Storage Drivers' => 'storage-drivers',
|
|
'This Package vs Others' => 'difference-between-this-package-and-others',
|
|
'Configuration' => 'configuration',
|
|
],
|
|
],
|
|
'Usage' => [
|
|
'url' => 'usage',
|
|
'children' => [
|
|
'Creating Tenants' => 'creating-tenants',
|
|
'Tenant Routes' => 'tenant-routes',
|
|
'Tenant Storage' => 'tenant-storage',
|
|
'Tenant Manager' => 'tenant-manager',
|
|
'Console Commands' => 'console-commands',
|
|
],
|
|
],
|
|
'Digging Deeper' => [
|
|
'url' => 'digging-deeper',
|
|
'children' => [
|
|
'Middleware Configuration' => 'middleware-configuration',
|
|
'Custom Database Names' => 'custom-database-names',
|
|
'Filesystem Tenancy' => 'filesystem-tenancy',
|
|
'Jobs & Queues' => 'jobs-queues',
|
|
'Event System' => 'event-system',
|
|
'Tenancy Initialization' => 'tenancy-initialization',
|
|
'Application Testing' => 'application-testing',
|
|
'Writing Storage Drivers' => 'writing-storage-drivers',
|
|
'Development' => 'development',
|
|
],
|
|
],
|
|
'Integrations' => [
|
|
'url' => 'integrations',
|
|
'children' => [
|
|
'Telescope' => 'telescope',
|
|
'Horizon' => 'horizon',
|
|
],
|
|
],
|
|
'Tips' => [
|
|
'children' => [
|
|
'HTTPS Certificates' => 'https-certificates',
|
|
'Misc' => 'misc-tips',
|
|
],
|
|
],
|
|
'Stay Updated' => 'stay-updated',
|
|
'GitHub' => 'https://github.com/stancl/tenancy',
|
|
],
|
|
'v2' => [
|
|
'Getting Started' => [
|
|
'url' => 'getting-started',
|
|
'children' => [
|
|
'Installation' => 'installation',
|
|
'Storage Drivers' => 'storage-drivers',
|
|
'This Package vs Others' => 'difference-between-this-package-and-others',
|
|
'Configuration' => 'configuration',
|
|
],
|
|
],
|
|
'Usage' => [
|
|
'url' => 'usage',
|
|
'children' => [
|
|
'Creating Tenants' => 'creating-tenants',
|
|
'Tenant Migrations'=> 'tenant-migrations',
|
|
'Tenant Routes' => 'tenant-routes',
|
|
'Tenant Storage' => 'tenant-storage',
|
|
'Tenant Manager' => 'tenant-manager',
|
|
'Console Commands' => 'console-commands',
|
|
],
|
|
],
|
|
'Digging Deeper' => [
|
|
'url' => 'digging-deeper',
|
|
'children' => [
|
|
'Tenants' => 'tenants',
|
|
'Middleware Configuration' => 'middleware-configuration',
|
|
'Custom Database Names' => 'custom-database-names',
|
|
'Filesystem Tenancy' => 'filesystem-tenancy',
|
|
'Jobs & Queues' => 'jobs-queues',
|
|
'Event System' => 'event-system',
|
|
'Tenancy Initialization' => 'tenancy-initialization',
|
|
'Application Testing' => 'application-testing',
|
|
'Writing Storage Drivers' => 'writing-storage-drivers',
|
|
],
|
|
],
|
|
'Integrations' => [
|
|
'url' => 'integrations',
|
|
'children' => [
|
|
'Telescope' => 'telescope',
|
|
'Horizon' => 'horizon',
|
|
],
|
|
],
|
|
'Tips' => [
|
|
'children' => [
|
|
'HTTPS Certificates' => 'https-certificates',
|
|
'Misc' => 'misc-tips',
|
|
'Global Cache/Storage/...' => 'global-stuff',
|
|
],
|
|
],
|
|
'Stay Updated' => 'stay-updated',
|
|
'GitHub' => 'https://github.com/stancl/tenancy',
|
|
],
|
|
];
|