Repeater::make('items')
->schema([
TextInput::make('name'),
Actions::make([
Action::make('set_default')
->action(fn ($get) => dd($get('name'))
]),
]),
Repeater::make('items')
->schema([
TextInput::make('name'),
Actions::make([
Action::make('set_default')
->action(fn ($get) => dd($get('name'))
]),
]),