Optional(Validatable $rule)
Validates if the given input is optional or not. By optional we consider null
or an empty string (''
).
v::optional(v::alpha())->isValid(''); // true
v::optional(v::digit())->isValid(null); // true
- Nesting
Version | Description |
---|---|
1.0.0 | Created |
See also: