Added panel box alert options in alert mail page #979

Merged
jothi merged 1 commits from ranjith-dev into master 2026-09-04 09:29:09 +00:00

View File

@@ -72,6 +72,7 @@ class AlertMailRuleResource extends Resource
Forms\Components\Select::make('module')
->label('Module')
->required()
->searchable()
->options([
'InvoiceValidation' => 'InvoiceValidation',
'InvoiceDataReport' => 'InvoiceDataReport',
@@ -83,9 +84,12 @@ class AlertMailRuleResource extends Resource
'ExportDispatchReport' => 'ExportDispatchReport',
'LaserStopAlert' => 'LaserStopAlert',
'LaserStopReport' => 'LaserStopReport',
'PanelBoxAlert' => 'PanelBoxAlert',
'PanelBoxReport' => 'PanelBoxReport',
]),
Forms\Components\Select::make('rule_name')
->label('Rule Name')
->searchable()
->options([
'InvoiceMail' => 'Invoice Mail',
'SerialInvoiceMail' => 'Serial Invoice Mail',
@@ -98,7 +102,9 @@ class AlertMailRuleResource extends Resource
'VehicleReportMail' => 'Vehicle Report Mail',
'ExportDispatchReportMail' => 'Export Dispatch Report Mail',
'LaserStopAlertMail' => 'Laser Stop Alert Mail',
'LaserStopMail' => 'Laser Stop Report Mail'
'LaserStopMail' => 'Laser Stop Report Mail',
'PanelBoxAlertMail' => 'Panel Box Alert Mail',
'PanelBoxNotOkReportMail' => 'Panel Box Not Ok Report Mail'
])
->required(),
Forms\Components\TextInput::make('email')