zfhassaan wrote a reply+100 XP
5mos ago
Update (06-11-2025 · 6:49 PM)
If you’re not receiving your broadcast events on Reverb - here’s what’s really happening:
Laravel is queuing your broadcast jobs instead of sending them out right away. That’s because your app is using the database queue driver (QUEUE_CONNECTION=database).
To fix it, just run this command to process queued events:
php artisan queue:work
Once the worker starts, your events will flow through to Reverb normally.