Added process order relation in item model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 14s

This commit is contained in:
dhanabalan
2026-09-22 09:56:18 +05:30
parent 61c714331b
commit c0df7b7a4e

View File

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