diff --git a/source/docs/v3/integrations/horizon.blade.md b/source/docs/v3/integrations/horizon.blade.md index f12164e..abcac13 100644 --- a/source/docs/v3/integrations/horizon.blade.md +++ b/source/docs/v3/integrations/horizon.blade.md @@ -5,12 +5,13 @@ section: content --- # Laravel Horizon {#laravel-horizon} +> Note: **Horizon is only accessible on the central domain**. You can separate the jobs by [tagging them with tenant IDs](#tags). Make sure your [queues]({{ $page->link('queues') }}) are configured correctly before using this. ## Tags {#tags} -You may add the current tenant's id to your job tags by defining a `tags` method on the class: +You may add the current tenant's ID to your job tags by defining a `tags` method on the class: ```php /** @@ -24,4 +25,4 @@ public function tags() 'tenant:' . tenant('id'), ]; } -``` \ No newline at end of file +```