Agregando calculo de fondo

This commit is contained in:
2025-01-12 13:00:21 -03:00
parent e3fb7259b9
commit 7bb61017de
10 changed files with 204 additions and 37 deletions

View File

@@ -35,4 +35,8 @@ class Turno extends Model
{
return $this->hasOne(Efectivo::class, 'turno_id');
}
public function calculosFondo(): HasMany
{
return $this->hasMany(CalculoFondo::class, 'turno_id');
}
}