Added Product Characteristics Master table has many relationship
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 10s

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);
}
}