validationMessages not work

Forms\Components\TextInput::make('codpos')->numeric()->integer()->maxLength(5)
->validationMessages([
'maxLength' => 'La longitud del campo es incorrecta'
]),
Captura_de_pantalla_2024-04-27_031449.png
Solution
Forms\Components\TextInput::make('codpos')->numeric()->integer()->maxLength(5)
->validationMessages([
'max_digits' => 'La longitud del campo es incorrecta'
]),
Was this page helpful?