From 152f0f18eaf203d092b9058803e21945478e90da Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 15 Sep 2026 09:52:42 +0530 Subject: [PATCH] Added stickerOrder realtion 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 c23546e..14d2e14 100644 --- a/app/Models/Item.php +++ b/app/Models/Item.php @@ -134,4 +134,9 @@ class Item extends Model { return $this->hasMany(ProductionTemp::class, 'item_id', 'id'); } + + public function stickerOrder() + { + return $this->hasMany(StickerOrder::class, 'item_id', 'id'); + } }