- Empezada nueva vista y modelo gastos.
This commit is contained in:
Bryam105
2026-05-29 11:42:05 -03:00
parent 1f07d1b53f
commit 74a38420d8
13 changed files with 699 additions and 4 deletions
+5
View File
@@ -17,4 +17,9 @@ class Supplier extends Model
{
return $this->hasMany(Product::class, 'suppliers_id');
}
public function expenses()
{
return $this->hasMany(Expense::class);
}
}