rut . '-' . $this->digito; } public function rutFormatted(): string { return number_format($this->rut, 0, ',', '.') . '-' . $this->digito; } public function jsonSerialize(): mixed { return [ 'auxiliar_id' => $this->auxiliar->id, 'centro_costo' => $this->centroCosto, 'rut' => $this->rut, 'digito' => $this->digito, 'nombre' => $this->nombre, 'categoria' => $this->categoria, 'detalle' => $this->detalle, 'rutFormatted' => $this->rutFormatted(), ]; } }