Postal Code Rule

Validate Postal Codes for Individual Countries

126k Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Validation Version 3. This version has reached end of life (EOL). Please consider upgrading to version Version 4.

public Intervention\Validation\Rules\Postalcode::__construct(string $countrycode)

The field under validation must be a postal code of the given country.

Parameters

countrycode

Country code string in ISO-639-1 format.

Example

use Intervention\Validation\Rules\Postalcode;

$validator = Validator::make($request->all(), [
    'attribute-key' => new Postalcode('de'),
]);
Edit