1
0
forked from poc/pds

Added panel box validations relation in sticker master model file

This commit is contained in:
dhanabalan
2026-08-20 14:30:54 +05:30
parent f9481275db
commit 02f0dce6aa

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');
}
}