From 31ad036d0efab757436870a75a70a91c850500d6 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 18 Jul 2025 19:11:51 +0530 Subject: [PATCH] Updated duration for failure messages to 5 seconds and label changed for total sno quantity field --- app/Filament/Pages/InvoiceFinder.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Filament/Pages/InvoiceFinder.php b/app/Filament/Pages/InvoiceFinder.php index 2d86eef36..e9211cb57 100644 --- a/app/Filament/Pages/InvoiceFinder.php +++ b/app/Filament/Pages/InvoiceFinder.php @@ -61,7 +61,7 @@ class InvoiceFinder extends Page implements HasForms ->readOnly() ->reactive(), TextInput::make('total_sno_quantity') - ->label('Total SNo. Quantity') + ->label('Invoice Quantity') ->readOnly() ->reactive(), @@ -79,7 +79,7 @@ class InvoiceFinder extends Page implements HasForms Notification::make() ->title("Invoice number '$invoiceNo' can't be empty!") ->danger() - ->duration(1200) + ->duration(5000) ->send(); $this->dispatch('loadData', '', [], [], [], [], $plantId); $this->form->fill([ @@ -101,7 +101,7 @@ class InvoiceFinder extends Page implements HasForms Notification::make() ->title("Invoice number '$invoiceNo' does not exist in locator invoice table!") ->danger() - ->duration(2000) + ->duration(5000) ->send(); $this->dispatch('loadData', '', [], [], [], [], $plantId); $this->form->fill([ @@ -128,7 +128,7 @@ class InvoiceFinder extends Page implements HasForms Notification::make() ->title("Invoice number '$invoiceNo' already completed the scanning process..!") ->success() - ->duration(2000) + ->duration(5000) ->send(); $this->dispatch('loadData', '', [], [], [], [], $plantId);