Select Component inside helper class is not updated
I have a Select Component for a Form that is inside a helper class. This Select Component is depending on some other values from the Form itself. If I put the Select Component on the Form, use
live()
live()
on the other components, all works.
As soon I move the Select Component to a helper class, it doesn't update anymore. I then first have to save the Form and reload the page.
Select::make('client_id') ->live() ->helperText('De organisatie die deze vacature plaatst') ->options(...) ->searchable() ->preload(),
Select::make('client_id') ->live() ->helperText('De organisatie die deze vacature plaatst') ->options(...) ->searchable() ->preload(),