From af793faf0d040751a45c09a799b24b7bc7c4ddbe Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 20 May 2025 10:03:11 +0530 Subject: [PATCH] Commented success message on qr scanning --- app/Livewire/InvoiceDataTable.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/Livewire/InvoiceDataTable.php b/app/Livewire/InvoiceDataTable.php index d729f67..b75b3c2 100644 --- a/app/Livewire/InvoiceDataTable.php +++ b/app/Livewire/InvoiceDataTable.php @@ -301,13 +301,13 @@ class InvoiceDataTable extends Component ]); } - Notification::make() - ->title('Success: Capacitor QR') - // ->title("Panel box code scanned: $itemCode") - ->body("'Capacitor' QR scanned status updated, Scan next QR.") - ->success() - ->seconds(2) - ->send(); + // Notification::make() + // ->title('Success: Capacitor QR') + // // ->title("Panel box code scanned: $itemCode") + // ->body("'Capacitor' QR scanned status updated, Scan next QR.") + // ->success() // commented + // ->seconds(2) + // ->send(); $totalQuantity = InvoiceValidation::where('invoice_number', $matchingValidation->invoice_number)->where('plant_id', $this->plantId)->count(); $scannedQuantity = InvoiceValidation::where('invoice_number', $matchingValidation->invoice_number)->where('plant_id', $this->plantId)->where('scanned_status', 'Scanned')->count();