Update passport.blade.md

This commit is contained in:
gregdhaas 2021-03-09 20:42:27 -05:00 committed by GitHub
parent e69c59e329
commit f9bfc1cb8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ To use Passport inside the tenant part of your application, you may do the follo
Passport::ignoreMigrations(); Passport::ignoreMigrations();
Passport::routes(null, ['middleware' => [ Passport::routes(null, ['middleware' => [
// You can make this simpler by creating a tenancy route group // You can make this simpler by creating a tenancy route group
InitializeTenancyBySubdomain::class, InitializeTenancyByDomainOrSubdomain::class,
PreventAccessFromCentralDomains::class, PreventAccessFromCentralDomains::class,
]]); ]]);
``` ```