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 }
if ($something) { //add custom error and dont close modal }
2 Replies
Solution
$action->halt()
perfect! π