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); + } } diff --git a/app/Models/Plant.php b/app/Models/Plant.php index 5a5e9aa..82dbf0f 100644 --- a/app/Models/Plant.php +++ b/app/Models/Plant.php @@ -84,6 +84,16 @@ class Plant extends Model return $this->hasMany(TestingPanelReading::class, 'plant_id', 'id'); } + // public function pumpTestingMasters() + // { + // return $this->hasMany(PumpTestingMaster::class, 'plant_id', 'id'); + // } + + // public function pumpTestingEntries() + // { + // return $this->hasMany(PumpTestingEntry::class, 'plant_id', 'id'); + // } + public function guardNames() { return $this->hasMany(GuardName::class, 'plant_id', 'id'); @@ -149,6 +159,11 @@ class Plant extends Model return $this->hasMany(ClassCharacteristic::class, 'plant_id', 'id'); } + // public function ModelMasters() + // { + // return $this->hasMany(ModelMaster::class, 'plant_id', 'id'); + // } + // public function rejectReasons() // { // return $this->hasMany(RejectReason::class, 'plant_id', 'id'); @@ -198,4 +213,11 @@ class Plant extends Model { return $this->hasMany(CharacteristicApproverMaster::class, 'plant_id', 'id'); } + + public function panelBoxValidations() + { + return $this->hasMany(PanelBoxValidation::class, 'plant_id', 'id'); + } + + }