diff --git a/source/docs/v3/features/cross-domain-redirect.blade.md b/source/docs/v3/features/cross-domain-redirect.blade.md index b5715c1..f482e2e 100644 --- a/source/docs/v3/features/cross-domain-redirect.blade.md +++ b/source/docs/v3/features/cross-domain-redirect.blade.md @@ -12,4 +12,10 @@ Sometimes you may want to redirect the user to a specific route on a different d ```php return redirect()->route('home')->domain($domain); -``` \ No newline at end of file +``` + +You can also use the `tenant_route()` helper to redirect users between domains. Which also works when redirecting the user from the central domain to the tenant domain. + +```php +return redirect(tenant_route($domain, 'home')); +```