Input

Valid Street Address Full

Rule `valid_street_address_full`: Validates full street address format.

Usage

Use for strict full address checks.

$schema = \Lemonade\Framework\Validation\ValidationSchema::create()
    ->field('field', 'Field')
        ->streetAddressFull()
        ->end();

$result = $validator->validate($payload, $schema);

Stable rule name

valid_street_address_full for translations, registry lookup and per-rule messages.

Group

Format