From 35ca404a69c52083d482bf8400f9608f6b95d392 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 18 Aug 2026 14:27:44 +0530 Subject: [PATCH] Added panel box validation relationship 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 d4d9e2e..79a81a4 100644 --- a/app/Models/Line.php +++ b/app/Models/Line.php @@ -185,4 +185,9 @@ class Line extends Model // { // return $this->hasMany(RejectReason::class, 'line_id', 'id'); // } + + public function panelBoxValidations() + { + return $this->hasMany(PanelBoxValidation::class); + } }