Action `fillForm` not working inside Repeater
After upgrade to V4
fillForm
throws following error when used inside Repeater
:
Here is a short code example:
Same problem appears when using with Builder
Everything works fine when action is used outside Repeater
, for example:
Solution:Jump to solution
Found a solution. Replaced
fillForm
with mountUsing
.
```php
Action::make('locations')
->schema([TextInput::make('address')])
->mountUsing(static function (Schema $schema, $state): void {...2 Replies