Added testingPanelReadings hasMany relation

This commit is contained in:
dhanabalan
2025-05-31 11:05:34 +05:30
parent c826a0da3d
commit 84ac80a18a

View File

@@ -32,4 +32,8 @@ class Item extends Model
{ {
return $this->hasMany(ProductionQuantity::class); return $this->hasMany(ProductionQuantity::class);
} }
public function testingPanelReadings()
{
return $this->hasMany(TestingPanelReading::class);
}
} }