1
0
forked from poc/pds

Merge pull request 'Added panel box validations relation in sticker master model file' (#915) from ranjith-dev into master

Reviewed-on: poc/pds#915
This commit is contained in:
2026-08-20 09:01:10 +00:00

View File

@@ -63,4 +63,9 @@ class StickerMaster extends Model
{
return $this->hasMany(InvoiceValidation::class, 'sticker_master_id');
}
public function panelBoxValidations()
{
return $this->hasMany(PanelBoxValidation::class, 'sticker_master_id');
}
}