Added product char master relation in item model file #240

Merged
jothi merged 1 commits from ranjith-dev into master 2026-09-20 09:54:22 +00:00

View File

@@ -55,4 +55,9 @@ class Item extends Model
{
return $this->hasMany(ItemCharacteristic::class, 'item_id', 'id');
}
public function productCharacteristicsMasters()
{
return $this->hasMany(ProductCharacteristicsMaster::class);
}
}