Added panel box validations relation in sticker master model file
Some checks failed
Gemini PR Review / Gemini PR Review (pull_request) Failing after 21s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 30s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 27s
Laravel Pint / pint (pull_request) Successful in 3m11s
Laravel Larastan / larastan (pull_request) Failing after 5m52s

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