Added panelBoxValidation relationship in plant model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 28s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 28s
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user