From e74e4a76dc163c0b54504b74d6dccdc39f1a6e2d Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Mon, 14 Sep 2026 15:26:29 +0530 Subject: [PATCH] Added relation of production temp in item model file --- app/Models/Item.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Models/Item.php b/app/Models/Item.php index bfba54e..c23546e 100644 --- a/app/Models/Item.php +++ b/app/Models/Item.php @@ -129,4 +129,9 @@ class Item extends Model { return $this->hasMany(CoilPacking::class, 'item_id', 'id'); } + + public function productionTemp() + { + return $this->hasMany(ProductionTemp::class, 'item_id', 'id'); + } }