laravel-echo Questions

1

Solved

The app is a chat app, using laravel and Vue, once a user logs in he sees the list of all online users, I called the Echo wrapper in the mounted component of the home page to show all online users,...
Fino asked 9/12, 2018 at 14:33

1

Solved

I'm following the Laravel Documentation to set up broadcasting using Pusher, and it looks pretty straight-forward, but I haven't gotten it work yet, so I must have made a mistake somewhere along th...
Spew asked 13/10, 2018 at 2:35

1

Solved

npm -v 6.4.1 nvm --version 0.33.11 when I install laravel-echo (in ubuntu16.04) npm i --save socket.io-client I got the error warning npm WARN [email protected] requires a peer of ajv@^6....
Mccrary asked 16/9, 2018 at 16:54

1

Solved

Scenario: A customer can refer a client to another customer. Each referral needs to be stored in a DB table row. The customer receiving the referral should see a notification for the event. Create...
Bandanna asked 3/9, 2018 at 10:48

2

I am having problem with socket.io as a broadcaster with laravel echo. What have I tried: php artisan cache:clear php artisan config:clear I can see users connecting within the logs: 0|Socket-...
Redpencil asked 21/8, 2018 at 8:42

1

Here is my server.js file: var app = require('express')(); var http = require('http').Server(app); var io = require('socket.io')(http); var Redis = require('ioredis'); var redis = new Redis(); ht...
Redintegrate asked 7/2, 2017 at 9:51

1

Currently I am using observers to handle some stuff after creation and updating of my models. I want to update my app by making it real-time using laravel-echo but I am not able to find documentat...
Bathos asked 17/7, 2017 at 20:5

1

Solved

I use laravel 5.3 I make routes/channels.php like this : <?php Broadcast::channel('messages', function() { return true; }); If I input the data cart and click submit, it will run this : th...
Openhearted asked 27/8, 2017 at 9:25

2

Solved

For whatever reason, I cannot receive any data on my client side from laravel echo. I am using laravel-echo-server (socket.io), redis broadcaster, and redis queues. As far as I can tell, they are a...
Civet asked 1/6, 2017 at 2:27

1

Solved

Is any way to use Laravel-echo library without Laravel framework and NPM? just use <script> tag and add library to my project.
Murchison asked 2/12, 2016 at 20:7

1

Solved

I'm using Pusher with Laravel Echo to create presence channels for certain areas in my application. All my front-end routing is done using Vue Router. When switching between routes, Vue router wil...
Culberson asked 8/4, 2017 at 17:6

1

Solved

I am having trouble with Laravel Echo to listener to Pusher channels. I am not able to get any response in my browser (no console log). In my bootstrap.js I got. import Echo from "laravel-echo" ...
Acalia asked 26/12, 2016 at 22:57

1

Solved

I'm trying to setup Laravel Echo with pusher, to implement real time notifications. First, i have installed Laravel Echo and Pusher: npm install --save laravel-echo pusher-js After this, in boo...
Cammack asked 14/9, 2016 at 7:4

© 2022 - 2024 — McMap. All rights reserved.