Sorry, no results were found for this search.

Postal Code Rule

Validate Postal Codes for Individual Countries

128k Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Validation v3. 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