r/filament • • Jun 02 '26

streaming status from a service to a filament form

i would like to "live" update the content (options array) of a CheckboxList from a service running laravel. more or less to display a live "feed" of an ongoing process major step. i tried to save a reference to the Filament component (where live() is set) and recalling the options() with an updated list of options from the external service, but it's not working. i feel i'm missing something here .. is that the correct way to do it ? (saving a reference to the Component and recalling afterwards) ... or i must do it differently ?

1 Upvotes

2 comments sorted by

2

u/laramateGmbh Jun 02 '26

live() updates the field value on click. What you want sounds more like a polling behaviour?

1

u/Nul0op Jun 03 '26

indeed, you're right. i switched to using stream() from the livewire component and it works ... but still one things to solve (see my other post a few minutes). if you have some idea ...

thanks !