Postal Code Rule

Validate Postal Codes for Individual Countries

132k Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Validation 3, this version has reached end of life (EOL). Please consider upgrading to 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