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);