Laravel echo服务器 - 如何在状态通道中更新数据?

I'm using laravel-echo-server for building a chat application on my site.

For storing user data (like nickname, IP, and ban status), I use Presence channels with a Redis driver. The data is assigned to a user on the first connection from an authorization callback route.

How can I update user data so that new connecting users will see already changed information? The only way is to force reconnect a user on data change?