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

Load the middleware from the SP, fix #3

This commit is contained in:
Samuel Štancl 2019-01-20 17:33:10 +01:00
parent 94aee1e485
commit 89d97a89ab
2 changed files with 9 additions and 17 deletions

View file

@ -7,6 +7,7 @@ use Stancl\Tenancy\TenantManager;
use Stancl\Tenancy\DatabaseManager;
use Stancl\Tenancy\Commands\Migrate;
use Stancl\Tenancy\Commands\Rollback;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
use Stancl\Tenancy\Commands\TenantList;
use Stancl\Tenancy\Interfaces\StorageDriver;
@ -35,6 +36,10 @@ class TenancyServiceProvider extends ServiceProvider
], 'config');
$this->loadRoutesFrom(__DIR__ . '/routes.php');
Route::middlewareGroup('tenancy', [
\Stancl\Tenancy\Middleware\InitializeTenancy::class
]);
}
/**