RepeatableEntry::make('families')
->schema([
TextEntry::make('first_name')
->hintActions([
Action::make('editFamilyEntry')
->hiddenLabel()
->icon('heroicon-m-pencil-square')
->iconButton()
->mountUsing(
function ($livewire, $form, $record) {
dd($livewire);
}
)
->slideOver()
->form([TextInput::make('first_name')])
])->columnSpan(2),
TextEntry::make('last_name')
->columnSpan(2),
])
->columns(2),
]),
RepeatableEntry::make('families')
->schema([
TextEntry::make('first_name')
->hintActions([
Action::make('editFamilyEntry')
->hiddenLabel()
->icon('heroicon-m-pencil-square')
->iconButton()
->mountUsing(
function ($livewire, $form, $record) {
dd($livewire);
}
)
->slideOver()
->form([TextInput::make('first_name')])
])->columnSpan(2),
TextEntry::make('last_name')
->columnSpan(2),
])
->columns(2),
]),