Open another modal with a form when action is confirmed
Actions\Action::make('updateStatus')
->requiresConfirmation()
->action(function (Component $livewire, Action $action) {
// when the action is confirmed
// open another model containing a form
})
Actions\Action::make('updateStatus')
->requiresConfirmation()
->action(function (Component $livewire, Action $action) {
// when the action is confirmed
// open another model containing a form
})
Actions\Action::make('updateStatus') ->requiresConfirmation() ->action(function (Component $livewire, Action $action) { // when the action is confirmed // open another model containing a form })
Actions\Action::make('updateStatus') ->requiresConfirmation() ->action(function (Component $livewire, Action $action) { // when the action is confirmed // open another model containing a form })