Checkboxlist: Options can't be checked separately
For some reason, if I check one option all options get checked and vise versa.
What am I missing? I'm using it in a custom livewire component:
Thank you!
3 Replies
somehow, when removing
->statePath('data')
fixes the issue. But that can't work, because I need the form data to be present.Solution
Make sure you are calling
$this->form->fill()
in the mount method.thank you! I missed that one.