Input
Min Length
Rule `min_length`: Minimum string length.
Usage
Input must have enough characters.
$schema = \Lemonade\Framework\Validation\ValidationSchema::create()
->field('field', 'Field')
->minLength(3)
->end();
$result = $validator->validate($payload, $schema);
Stable rule name
min_length for translations, registry lookup and per-rule messages.
Group
String Length