Validation icon indicating copy to clipboard operation
Validation copied to clipboard

The age function not compatible minimumAge

Open lucascdsilva opened this issue 6 years ago • 0 comments

Example:

 v::age($format='d/m/Y')->age(18)->validate('01/01/1996') // is false

the $format argument it's useful for validate the value format.

Example:

v::minimumAge(18, $format='d/m/Y')->validate('01/01/1996') // is true

the $format argument it's useful for format the value.

lucascdsilva avatar Aug 29 '19 13:08 lucascdsilva