nuevo formulario

This commit is contained in:
Lizandro Guarnizo
2026-06-18 11:06:49 -05:00
parent 155450b676
commit 0282645c08
9 changed files with 231 additions and 3 deletions
+7 -2
View File
@@ -26,8 +26,8 @@ class Servicio extends Model
'por_tiempo',
'renovacion',
'precio',
'ubicacion'
'ubicacion',
'dgo',
];
public function promocion(){
@@ -41,4 +41,9 @@ class Servicio extends Model
public function cuentas(){
return $this ->hasMany(Cuentas::class,'servicio_id');
}
public function compatibilidadDgo()
{
return $this->hasMany(CompatibilidadDgo::class);
}
}