Added panel box validations relation in sticker master model file #915

Merged
jothi merged 1 commits from ranjith-dev into master 2026-08-20 09:01:11 +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');
}
}