How can I make fields live across sessions?
So when a user is typing in a RichEditor, other users can see it live from the view page. I tried doing it using broadcasting, but didnt work. I can share code, but only if thats the only solution and there is no way to do it through filament. Also afaik
live()
only works for the current users session.3 Replies
so far this is what im using
up
Anyone?
Broadcasting via Websockets would be the way to go. But I have no experience integrating that into a Filament form.
Okk thanks! I will post some code shortly, and maybe someone else can help
I can see that the pusher gets the messages, however, nothing is printed in the console
Is it maybe impossible to update a form on the view page after it has loaded?
The other option would be to add polling? Although i dont think that is possible with resources
up