From f1c0dc738c74ea36131695c32d578c65adf73473 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 14 Jan 2026 09:52:41 +0530 Subject: [PATCH] Added Product Characteristics Master table has many relationship --- app/Models/Item.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Models/Item.php b/app/Models/Item.php index 9e62266..0c2d12e 100644 --- a/app/Models/Item.php +++ b/app/Models/Item.php @@ -48,4 +48,9 @@ class Item extends Model { return $this->hasMany(ProcessOrder::class); } + + public function productCharacteristicsMasters() + { + return $this->hasMany(ProductCharacteristicsMaster::class); + } }