1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 19:34:04 +00:00

Move tenant routes file

This commit is contained in:
Samuel Štancl 2020-05-24 21:10:50 +02:00
parent 5a19f1769e
commit 5eeba43796
3 changed files with 12 additions and 4 deletions

View file

@ -1,6 +1,8 @@
<?php
use Illuminate\Support\Facades\Route;
use Stancl\Tenancy\Middleware\InitializeTenancyByDomain;
use Stancl\Tenancy\Middleware\PreventAccessFromCentralDomains;
/*
|--------------------------------------------------------------------------
@ -8,15 +10,14 @@ use Stancl\Tenancy\Middleware\InitializeTenancyByDomain;
|--------------------------------------------------------------------------
|
| Here you can register the tenant routes for your application.
| These routes are loaded by the TenantRouteServiceProvider
| with the namespace configured in your tenancy config.
| These routes are loaded by the TenantRouteServiceProvider.
|
| Feel free to customize them however you want. Good luck!
|
*/
Route::group([
'middleware' => ['web', InitializeTenancyByDomain::class],
'middleware' => ['web', PreventAccessFromCentralDomains::class, InitializeTenancyByDomain::class],
'prefix' => '/app',
], function () {
Route::get('/', function () {