Skip to content

Laravel Horizon integration

Make sure your queues are configured correctly before using this.

Tags

You may add the current tenant’s ID to your job tags by defining a tags method on the class:

/**
* Get the tags that should be assigned to the job.
*
* @return array
*/
public function tags()
{
return [
'tenant:' . tenant('id'),
];
}