Repeater does not work on customized page
The add button does not work, my code:
5 Replies
Solution
make sure you're calling
$this->form->fill()
in the mount method. like this?
You only need to pass the array to it if you are setting specific data for the form state. Otherwise just call it as fill()
Fill sets up and initializes the form and actions, etc.
Check out these docs too. They will give you more insight to forms. Just remember that the custom page is the livewire component. https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component
Very thanks