tenancy-docs/source/docs/v3/integrations/horizon.blade.md
Samuel Štancl f8f354c323 3.x redesign
2020-06-08 21:20:15 +02:00

356 B

title extends section
Laravel Horizon integration _layouts.documentation content

Laravel Horizon

Make sure your [queues]({{ $page->link('queues') }}) are configured correctly before using this.

You may add the current tenant's id to your job tags:

public function tags()
{
    return [
        'tenant' => tenant('id'),
    ];
}