Sigla sociedad

This commit is contained in:
Juan Pablo Vial
2024-05-13 16:58:33 -04:00
parent a5125aff74
commit 0e0b783a80
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,7 @@ class Inmobiliaria extends Model
public ?string $razon;
public ?string $abreviacion;
public ?TipoSociedad $tipoSociedad;
public string $sigla;
public function rut(): string
{
@ -35,7 +36,8 @@ class Inmobiliaria extends Model
'rut_formateado' => $this->rut(),
'razon' => $this->razon ?? '',
'abreviacion' => $this->abreviacion ?? '',
'tipo_sociedad' => $this->tipoSociedad ?? ''
'tipo_sociedad' => $this->tipoSociedad ?? '',
'sigla' => $this->sigla,
];
}
}