mirror of
https://github.com/stancl/tenancy-docs.git
synced 2025-12-12 10:14:03 +00:00
356 B
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'),
];
}