From 341f4f20b45b37173fd55086a2559fe4e1beb3ef Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 30 Jan 2026 14:33:47 +0530 Subject: [PATCH] Added update missing warning --- app/Livewire/InvoiceDataTable.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/Livewire/InvoiceDataTable.php b/app/Livewire/InvoiceDataTable.php index 7be0263..3b512c3 100644 --- a/app/Livewire/InvoiceDataTable.php +++ b/app/Livewire/InvoiceDataTable.php @@ -706,6 +706,18 @@ class InvoiceDataTable extends Component } break; } + else{ + Notification::make() + ->title('Panel Box Code') + ->body("Panel Box Code not updated in db for Item Code: $this->currentItemCode and Serial Number: $this->currentSerialNumber") + ->danger() + // ->duration(4000) + ->seconds(2) + ->send(); + $this->capacitorInput = ''; + + return; + } } $this->showCapacitorInput = false;