I have recently delved into Laravel 5.3\'s Laravel-Echo and Pusher combination. I have successfully set up public channels and moved on to private ones. I am having trouble
Check how you are authorising your channel. Depending on your setup this might help. Update your BroadcastServiceProvider with the following:
['auth:api']]); require base_path('routes/channels.php'); } }
Adds in the Auth API middleware for use with Laravel Passport.