$get() not finding fields
Good morning, I have a filament form in a modal on a custom livewire page. I have a select field which is dependent on another select field. Nothing crazy, just use GET $get()... Atleast that's what I thought.
Because its appearing to not find those fields for some reason. But I have no Idea what's going wrong.
It is finding the "answer" field outside of the FieldSection, but all the fields within are simply nowhere to be seen.
3 Replies
The picture comes from the dd($get()); As per documentation this gets all accessible fields within the scope
https://filamentphp.com/docs/3.x/forms/fields/repeater#using-get-to-access-parent-field-values
Hmm you have 2 calls to
->schema()
ah nvm it's the formatting that makes it look like thatI somehow got this to work using a repeater instead of a fieldset
Still the issue is really weird, I have no clue why $get() just couldnt find the fields