From 215e1302cc19e49142f5a152f07de72f9d3146ee Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 10 Jul 2025 18:26:15 +0530 Subject: [PATCH] Added 0 instead of all plamnts in alert mail --- .../Resources/AlertMailRuleResource/Pages/EditAlertMailRule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Resources/AlertMailRuleResource/Pages/EditAlertMailRule.php b/app/Filament/Resources/AlertMailRuleResource/Pages/EditAlertMailRule.php index b7b6b304a..d35391dfb 100644 --- a/app/Filament/Resources/AlertMailRuleResource/Pages/EditAlertMailRule.php +++ b/app/Filament/Resources/AlertMailRuleResource/Pages/EditAlertMailRule.php @@ -14,7 +14,7 @@ class EditAlertMailRule extends EditRecord { //dd('test'); if ($data['is_active']) { - $data['plant'] = 'All Plants'; + $data['plant'] = 0; } return $data; }