Added relationship of production temp in plant model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 13s

This commit is contained in:
dhanabalan
2026-09-14 15:25:45 +05:30
parent 773c4a0adc
commit bd29bbeb48

View File

@@ -238,4 +238,9 @@ class Plant extends Model
{
return $this->hasMany(CoilPacking::class, 'plant_id', 'id');
}
public function productionTemp()
{
return $this->hasMany(ProductionTemp::class, 'plant_id', 'id');
}
}