diff --git a/app/Models/Plant.php b/app/Models/Plant.php index d121126..389c2e1 100644 --- a/app/Models/Plant.php +++ b/app/Models/Plant.php @@ -57,4 +57,9 @@ class Plant extends Model { return $this->hasMany(QualityValidation::class, 'sticker_master_id'); } + + public function testingPanelReadings() + { + return $this->hasMany(TestingPanelReading::class); + } }