previousUrl; } protected function mutateFormDataBeforeSave(array $data): array { $data['enabled'] = (bool) $data['enabled']; return $data; } /** * @throws Halt */ protected function handleRecordUpdate(Model $record, array $data): Model { $user = auth()->user(); if (! $user) { throw new Halt('No authenticated user found'); } $evaluatedTypes = [TaxType::Sales, TaxType::Purchase]; return $this->handleRecordUpdateWithUniqueField($record, $data, $user, 'type', $evaluatedTypes); } }