TextInput::make('search')
->suffixAction(Action::make('foo')
->modalCancelAction(
Action::make('cancel')
->action(function (Set $set,Action $action, $component, $livewire) {
//Why won't you close! (╯▔皿▔)╯
$livewire->close();
$action->cancelParentActions();
$action->halt();
return;
})
->cancelParentActions( )
// ->close()
// ->after(function() {...})
)
TextInput::make('search')
->suffixAction(Action::make('foo')
->modalCancelAction(
Action::make('cancel')
->action(function (Set $set,Action $action, $component, $livewire) {
//Why won't you close! (╯▔皿▔)╯
$livewire->close();
$action->cancelParentActions();
$action->halt();
return;
})
->cancelParentActions( )
// ->close()
// ->after(function() {...})
)