ranjith-dev #898

Merged
jothi merged 4 commits from ranjith-dev into master 2026-08-18 07:16:47 +00:00
Showing only changes of commit 39d65afcfe - Show all commits

View File

@@ -18,6 +18,7 @@ class AlertMailRule extends Model
'email',
'cc_emails',
'schedule_type',
'machine_id',
'created_at',
'updated_at',
'created_by',
@@ -29,4 +30,10 @@ class AlertMailRule extends Model
return $this->belongsTo(InvoiceMaster::class);
//return $this->belongsTo(InvoiceMaster::class, 'invoice_master_id');
}
public function machine(): BelongsTo
{
return $this->belongsTo(Machine::class);
//return $this->belongsTo(InvoiceMaster::class, 'invoice_master_id');
}
}