Skip to content
Advertisement

validating a numeric input’s length in laravel 5

foo.blade.php

JavaScript

FooController.php

JavaScript

the national-id field should contain 10 digits and I actually expected the code above to validate this , but instead It will check If the national-id exactly equals to 10 or not …

how can I validate the length of a numeric field?

Advertisement

Answer

In fact you don’t need to use digits_between rule. You can use digits rule so according to documentation it will be enough to use:

JavaScript

without numeric rule because digits rule also verify if given value is numeric.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement