1
0
forked from poc/pds

Added Product Characteristics Master table has many relationship

This commit is contained in:
dhanabalan
2026-01-14 09:52:41 +05:30
parent 58175a245e
commit f1c0dc738c

View File

@@ -48,4 +48,9 @@ class Item extends Model
{
return $this->hasMany(ProcessOrder::class);
}
public function productCharacteristicsMasters()
{
return $this->hasMany(ProductCharacteristicsMaster::class);
}
}