Actions::make([
Action::make('myModalAction')
->label('Open')
->modal()
->modalHeading('Heading')
->modalDescription('Description')
->modalSubmitActionLabel('Confirm')
->form([
TextInput::make('code')
->required()
->autofocus(),
Actions::make([
Action::make('resend')
->label('Resend code')
->link()
->action(function () {
// do something
}),
]),
])
->action(function ($model) {
// do something
}),
]);
Actions::make([
Action::make('myModalAction')
->label('Open')
->modal()
->modalHeading('Heading')
->modalDescription('Description')
->modalSubmitActionLabel('Confirm')
->form([
TextInput::make('code')
->required()
->autofocus(),
Actions::make([
Action::make('resend')
->label('Resend code')
->link()
->action(function () {
// do something
}),
]),
])
->action(function ($model) {
// do something
}),
]);