From 5517531c73073d2cb4dd04b64721904ec6234b31 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Fri, 26 Aug 2022 16:42:27 +0200 Subject: [PATCH] Add note about Horizon being used in the central app (#192) * Add note about Horizon being used in the central app * Update note --- source/docs/v3/integrations/horizon.blade.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 +```