ابزار Laravel Reverb رسماً اومده تا معادله‌ی WebSocket توی اکوسیستم لاراول رو تغییر بده.

سال‌هاست هر وقت بحث Real-Time میاد وسط، یا باید بری سراغ Pusher (که هزینه‌ش با ترافیک بالا میره هوا 💸) یا پکیج‌هایی مثل BeyondCode Laravel WebSockets (که دیگه پشتیبانی درست‌وحسابی نداره).

حالا Laravel با Reverb اومده؛ یه سرور WebSocket رسمی، سریع و یکپارچه با خود فریم‌ورک.

تفاوتش با WebSocketهای معمولی چیه؟
✅ قابلیت Integration out-of-the-box → بدون دردسر اضافه با Broadcasting و Echo.
✅ پشتیبانی از Redis → برای scale کردن روی چند سرور.
✅ پروتکل Pusher → یعنی همون کلاینت‌هایی که قبلاً نوشتی، همچنان کار می‌کنن.
✅ خودت میزبانشی → یعنی دیگه خبری از قبض آخر ماه Pusher نیست.

⚡ مثال واقعی: ساخت یک سیستم چت بلادرنگ

رویکرد قدیمی با WebSockets معمولی:
– باید خودت سرور Node.js بنویسی.
– کانفیگ، اتنتیکیشن و sync با اپلیکیشن PHP کلی وقت می‌گیره.

با Laravel Reverb:

۱- نصب Reverb
۲- ساخت Event
۳- سمت فرانت‌اند (React یا Vue)

📌 نتیجه؟
یک سیستم چت بلادرنگ داری که مستقیم با لاراول یکپارچه‌ست، بدون نیاز به سرورهای اضافه یا هزینه‌های وحشتناک.

🎯 برداشت من:
برای پروژه‌های جدی و scale بالا، Reverb انتخاب منطقیه.
برای MVP یا تیم‌های خیلی کوچیک شاید Pusher هنوز سریع‌تر راه بیفته.
ولی در کل، داشتن یه WebSocket سرور رسمی از سمت خود لاراول یعنی ماجرا تازه شروع شده…

✍️ نظر شما چیه؟
تا حالا کسی ازتون Reverb رو توی production تست کرده؟
می‌خوام تجربه‌هاتون رو بشنوم 👇

#php
#laravel
#reverb
#realtime


ترجمه:

The Laravel Reverb tool has officially come to change the WebSocket equation in the Larval ecosystem.

It has been years whenever a real-time discussion comes in the middle, or you have to go to Pusher (which costs high in traffic) or packages like BeyondCode Laravel WebSockets (which no longer supports proper support).

Now Laravel has come with reverb; A formal, fast and integrated WebSocket server with the framework itself.

What is the difference with ordinary WebSocket?
✅ Integration Out-OF-Box → Without Extra Task With Broadcasting and Echo.
✅ Redis Support → to scale on multiple servers.
✅ Pusher Protocol → That is the same clients you have written before.
✅ Hosting yourself → means no more Pusher’s last month.

⚡ Real example: Build a real -time chat system

Old approach with ordinary WebSockets:
– You have to write the node.js server yourself.
– Configuration, Atteraction and Sync takes time with the PHP app.

With Laravel Reverb:

Install Reverb
Making Event
2. React or Vue)

📌 Result?
You have an real -time chat system that is integrated directly with Larval, without the need for extra servers or terrible costs.

🎯 My Harvest:
For serious and high scale projects, Reverb is a logical choice.
For MVP or very small teams, Pusher may still be faster.
But overall, having an official WebSocket server from Larval’s own side has just begun…

What do you think?
Has anyone tested Reverb in Production?
I want to hear your experience;

#php
#laravel
#reverb
#realtime