Erster Upload

This commit is contained in:
Malek Tellissi
2026-09-11 01:17:47 +02:00
commit 400172cdde
171 changed files with 18844 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ProductInventory extends Model
{
protected $fillable = ['product_id', 'size_id', 'out_at'];
protected $table = 'products_inventory';
public function product()
{
return $this->belongsTo(product::class);
}
public function size()
{
return $this->belongsTo(ProductSize::class);
}
}