/home/techb158/dev.balacoffee.com/app/Models
Edit: /home/techb158/dev.balacoffee.com/app/Models/product_warehouse.php (719B)
'integer',
'warehouse_id' => 'integer',
'qte' => 'double',
];
public function warehouse()
{
return $this->belongsTo('App\Models\Warehouse');
}
public function product()
{
return $this->belongsTo('App\Models\Product');
}
public function productVariant()
{
return $this->belongsTo('App\Models\ProductVariant');
}
}