1# Negative
2
3- `v::negative()`
4
5Validates if a number is lower than zero
6
7```php
8v::numeric()->negative()->validate(-15); // true
9```
10
11***
12See also:
13
14  * [Positive](Positive.md)
15