Postal Code Rule
Validate Postal Codes for Individual Countries
117k Downloads / Month
Open Source MIT License
117k 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.
Country code string in ISO-639-1 format.
use Intervention\Validation\Rules\Postalcode;
$validator = Validator::make($request->all(), [
'attribute-key' => new Postalcode('de'),
]);
Edit