// Working example
$schema
->components([
/** Repeater::make('stores') */
/** ->schema([ */
TextInput::make('name'),
Actions::make([
Action::make('locations')
->schema([TextInput::make('address')])
->fillForm(fn ($state) => dd($state))
]),
/** ]) */
]);
// Working example
$schema
->components([
/** Repeater::make('stores') */
/** ->schema([ */
TextInput::make('name'),
Actions::make([
Action::make('locations')
->schema([TextInput::make('address')])
->fillForm(fn ($state) => dd($state))
]),
/** ]) */
]);