add the path to the "home" route for central application

This commit is contained in:
Impeck 2022-04-11 09:21:15 +05:00
parent 2c0a9cd53a
commit acec90c269

View file

@ -5,6 +5,7 @@ section: content
---
# Laravel Orchid {#laravel-orchid}
The instruction is written for a newly installed Orchid platform, it is proposed to use the platform as a central application and the tenant app.
## Both in the central app and the tenant app
@ -13,13 +14,16 @@ Laravel Orchid has already been installed according to the [documentation Orchid
- To use Orchid both in the central & tenant parts you need to enable [Universal Routes](docs/v3/features/universal-routes).
- Add the tenancy middleware to your `config\platform.php`
```php
'middleware' => [
'public' => ['web', 'universal', \Stancl\Tenancy\Middleware\InitializeTenancyByDomain::class],
'private' => ['web', 'platform', 'universal', \Stancl\Tenancy\Middleware\InitializeTenancyByDomain::class],
],
```
- Add a route to `routes\platform.php`
```php
Route::screen('/', PlatformScreen::class)
->name('platform.index')
@ -27,16 +31,24 @@ Laravel Orchid has already been installed according to the [documentation Orchid
return $trail->push(__('Home'), route('platform.index'));
});
```
- In the file `app\Providers\RouteServiceProvider.php`, if necessary, change the path to the "home" route for your central application. By default for Orchid it will be `'admin/main'`
```php
public const HOME = 'admin/main';
```
- Tenant Routes `routes\tenant.php`
```php
Route::middleware([
'web',
'platform',
InitializeTenancyByDomain::class,
PreventAccessFromCentralDomains::class,
])->prefix('admin')->group(function () {
])->prefix(Orchid\Platform\Dashboard::prefix('/'))->group(function () {
Route::get('/', function () {
return 'This is your multi-tenant application. The id of the current tenant is ' . tenant('id');
});
});
```
```