From 2b2b0d8803fc2dc7520cebf6c1d1a45728d055bc Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 4 Dec 2025 16:30:31 +0530 Subject: [PATCH] removed notification sound in capacitor input box --- .../InvoiceValidationResource/Pages/CreateInvoiceValidation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Resources/InvoiceValidationResource/Pages/CreateInvoiceValidation.php b/app/Filament/Resources/InvoiceValidationResource/Pages/CreateInvoiceValidation.php index 4501955..eaf6286 100644 --- a/app/Filament/Resources/InvoiceValidationResource/Pages/CreateInvoiceValidation.php +++ b/app/Filament/Resources/InvoiceValidationResource/Pages/CreateInvoiceValidation.php @@ -69,7 +69,7 @@ class CreateInvoiceValidation extends CreateRecord $totQuan = InvoiceValidation::where('invoice_number', $this->invoiceNumber)->where('plant_id', $this->plantId)->count(); $scanSQuan = InvoiceValidation::where('invoice_number', $this->invoiceNumber)->where('scanned_status', 'Scanned')->where('plant_id', $this->plantId)->count(); - $this->dispatch('playNotificationSound'); + // $this->dispatch('playNotificationSound'); if ($totQuan == $scanSQuan) { $this->form->fill([ 'plant_id' => $this->plantId,