I'm trying to react to connecting with laravel-websockets.
There are custom handlers
https://beyondco.de/docs/laravel-websockets/advanced-usage/custom-websocket-handlers
And there are endpoint
WebSocketsRouter::webSocket('/my-websocket', \App\MyCustomWebSocketHandler::class);
I don't understand, what I need to do to invoke this reaction? Do I need to make new connection, using
Echo.join('my-websocket');
? Or I can join to any channel, and this events will be triggered?