Laravel Reverb — the framework's native WebSocket server — has graduated from beta and is now considered production-ready. Reverb allows Laravel applications to broadcast real-time events without relying on third-party services like Pusher.
Install Reverb via Artisan:
php artisan install:broadcasting
This installs and configures Reverb automatically. The server is then started with:
php artisan reverb:start
Reverb can run behind Nginx or Caddy as a reverse proxy. The official documentation includes deployment recipes for common hosting environments including Laravel Forge and Fly.io.
All Comments