Postal Code Rule

Validate Postal Codes for Individual Countries

98k Downloads / Month

Open Source MIT License

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