[Vuejs]-Not able to use laravel-echo in vue cli project

0👍

in your channels.php add guards

Broadcast::channel('Chat', function ($user) {
    return true;
}, ['guards' => 'web']); //  add this guards

and remove authEndpoint it should auto detect

Leave a comment