From 88346b9ad8fc4df112d46d263449efdfb0131b73 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 20 Jan 2026 10:43:42 +0530 Subject: [PATCH] changed max length in invoice pending reason --- app/Filament/Pages/InvoicePendingReason.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Filament/Pages/InvoicePendingReason.php b/app/Filament/Pages/InvoicePendingReason.php index 851d792..1c67f2c 100644 --- a/app/Filament/Pages/InvoicePendingReason.php +++ b/app/Filament/Pages/InvoicePendingReason.php @@ -135,8 +135,8 @@ class InvoicePendingReason extends Page TextInput::make('remark') ->label('Remark') ->reactive() - ->maxLength(20) - ->helperText('Max 20 characters allowed.') + ->maxLength(40) + ->helperText('Max 40 characters allowed.') ->extraAttributes([ 'wire:keydown.enter.prevent' => 'addRemark($event.target.value)', ])