update nova integration for v3 mw

This commit is contained in:
Samuel Štancl 2020-06-14 21:52:13 +02:00
parent 37f5c906fc
commit 5c5af86851

View file

@ -48,6 +48,16 @@ To use Nova inside of the tenant part of your application, do the following:
with these lines: with these lines:
```php ```php
->withAuthenticationRoutes(['web', 'tenancy']) ->withAuthenticationRoutes([
->withPasswordResetRoutes(['web', 'tenancy']) // You can make this simpler by creating a tenancy route group
InitializeTenancyByDomain::class,
PreventAccessFromCentralDomains::class,
'web',
])
->withPasswordResetRoutes([
// You can make this simpler by creating a tenancy route group
InitializeTenancyByDomain::class,
PreventAccessFromCentralDomains::class,
'web',
])
``` ```