Sigla sociedad
This commit is contained in:
@ -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,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user