feat: add optional 'dni' and 'telefono' fields to User model and registration process

This commit is contained in:
2026-07-03 16:24:56 -03:00
parent 1d94ff8885
commit 6d066beea3
7 changed files with 71 additions and 5 deletions

View File

@@ -19,6 +19,8 @@ class UserResource extends JsonResource
'id' => $this->id,
'nombre_apellido' => $this->nombre_apellido,
'email' => $this->email,
'dni' => $this->dni,
'telefono' => $this->telefono,
];
}
}