I have numeric field i want to validate on exact fill 4 digits.
like: 1234, 4567,1245
but these invalid inputs: like: 123, 346, 45m6, 34567
what I am trying:
'last4digits' => 'numeric|between:4,4',
You are looking for the digits
rule. From the docs:
The field under validation must be numeric and must have an exact length of value.
'last4digits' => 'digits:4'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With