How do i prevent an action modal from closing the modal on submit

How do i prevent an action modal from from closing the modal on submit

->action(function ($action, Order $record, $livewire, $data) {

if ($something) {
//add custom error and dont close modal
}
Solution
$action->halt()
Was this page helpful?