From 84ac80a18a5798575bc7b7316c07deda5a46c3bc Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Sat, 31 May 2025 11:05:34 +0530 Subject: [PATCH] Added testingPanelReadings hasMany relation --- app/Models/Item.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Models/Item.php b/app/Models/Item.php index fdba5bfc0..d1be971e8 100644 --- a/app/Models/Item.php +++ b/app/Models/Item.php @@ -32,4 +32,8 @@ class Item extends Model { return $this->hasMany(ProductionQuantity::class); } + public function testingPanelReadings() + { + return $this->hasMany(TestingPanelReading::class); + } }