Skip to main content

All Questions

2 votes
2 answers
604 views

Do I need a node.js server for Laravel Reverb?

Hello I've got a question, beacause I still don't understand that topic well and I'm beginner in that, I want to build web application where will be included realtime chat.For websockets I want to use ...
JayVch's user avatar
  • 95
0 votes
0 answers
236 views

How to use Laravel WebSockets for Realtime Data Update

I want to create application that using websocket for realtime data sync. My application has laravel base as backend and react next as frontend, which has an architecture where FE and BE are separate ...
Briansay's user avatar
0 votes
0 answers
83 views

How to emit an socket event from one file and listen to it from another file?

io.on('connection',(socket)=>{ console.log('connection'); socket.on('connected',(userid)=>{ users[userid]= socket.id; }); socket.on('updatecurr',()=>{ console.log('request'); ...
hammad raza's user avatar
0 votes
1 answer
242 views

Problem with broadcasting and websocket in Laravel

I don't understand where it is blocking. If I replace the update() with a create() method, it works, or if I remove the broadcast, the update works. How to update with the broadcast? Call to a member ...
vinc lre's user avatar
8 votes
5 answers
17k views

Laravel websocket cant connect to pusher ERR_CERT_AUTHORITY_INVALID

I have a laravel application with websockets. I already setup all the needs for the websocket and pusher config. But whenever I test my broadcast channel I got app.js:58283 WebSocket connection to '...
draw134's user avatar
  • 1,157
1 vote
0 answers
170 views

Real-time does not work in production (Laravel-echo)

Follow the settings... larave-echo-server.json { "authHost": "https://meusite.com.br", "authEndpoint": "/broadcasting/auth", "clients": [ { "appId": "***", ...
Felipe Duarte's user avatar
0 votes
2 answers
341 views

Handling realtime in laravel

I know this will be closed question but I can't find what I want so I need to ask pros over here. What is the best option for real time content in laravel app like messages, notifications and even ...
user avatar
2 votes
3 answers
10k views

Real time Chat application with PHP & Websockets

I want to create chat application in a webapp where user can chat with different site users. This will be available on web and also on iOS. Instead of using traditional polling technique (send ajax ...
Gaurav Bakshi's user avatar
8 votes
1 answer
1k views

Laravel Events Dynamic Channel Name

I am creating a real-time notifications feature within my app that will use Pusher to automatically notify the user when they get a notification (which is created by certain actions taken by users ...
Matt Pierce's user avatar
3 votes
4 answers
6k views

Pusher on route not sending event in Laravel

I am creating a test app using Pusher for real-time notification on Laravel 4. As I am testing the said API, I am having difficulties on making it work. I have this on my routes.php: Route::get('...
Jay Marz's user avatar
  • 1,892
1 vote
2 answers
1k views

Implementing somewhat real time messages into Laravel

I am currently figuring out how i could in the simplest way build a real time messaging system linked with Laravel. What i am looking to do is to: Imagine 2 users, A & B. A sends a message to B ...
Sam Pettersson's user avatar