exists(); if ($exists) { Notification::make() ->title('Failed to save') ->body('A record already exists.') ->danger() ->send(); $this->halt(); // Stop the save process } return $data; } }