app('queue')->connection('redis');
Add this in your AppServiceProvider
public function boot(): void
{
// Force Redis queue connection resolution early to avoid
// 'Call to undefined method Illuminate\Queue\RedisQueue::readyNow()' error in Horizon,
// especially in multi-tenant context.
app('queue')->connection('redis');
// your existing codes.......
}