From 665bac1bff81c032e355df4f47147d24727d4403 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Sun, 20 Sep 2026 15:22:47 +0530 Subject: [PATCH] Added product char master relation in line model file --- app/Models/Line.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Models/Line.php b/app/Models/Line.php index ed9c69a..377e11d 100644 --- a/app/Models/Line.php +++ b/app/Models/Line.php @@ -156,6 +156,11 @@ class Line extends Model return $this->hasMany(Machine::class); } + public function productCharacteristicsMasters() + { + return $this->hasMany(ProductCharacteristicsMaster::class); + } + // public function rejectReasons() // { // return $this->hasMany(RejectReason::class, 'line_id', 'id');