1
0
forked from poc/pds

Added max length for remark for invoice pending reason page

This commit is contained in:
dhanabalan
2026-01-20 10:42:10 +05:30
parent 771e9351db
commit e4b39c5b52

View File

@@ -135,9 +135,11 @@ class InvoicePendingReason extends Page
TextInput::make('remark')
->label('Remark')
->reactive()
->extraAttributes([
'wire:keydown.enter.prevent' => 'addRemark($event.target.value)',
])
->maxLength(20)
->helperText('Max 20 characters allowed.')
->extraAttributes([
'wire:keydown.enter.prevent' => 'addRemark($event.target.value)',
])
->autofocus()
->required(),
])