1# Min
2
3- `v::min(mixed $minValue)`
4- `v::min(mixed $minValue, boolean $inclusive = true)`
5
6Validates if the input is greater than the minimum value.
7
8```php
9v::intVal()->min(15)->validate(5); // false
10v::intVal()->min(5)->validate(5); // false
11v::intVal()->min(5, true)->validate(5); // true
12```
13
14Also accepts dates:
15
16```php
17v::date()->min('2012-01-01')->validate('2015-01-01'); // true
18```
19
20`true` may be passed as a parameter to indicate that inclusive
21values must be used.
22
23Message template for this validator includes `{{minValue}}`.
24
25***
26See also:
27
28  * [Max](Max.md)
29  * [Between](Between.md)
30