laravel-validation-rules/country-codes

Validate country codes.
478,349 32
Install
composer require laravel-validation-rules/country-codes
Latest Version:4.2.0
PHP:^7.3|^8.0
License:Apache-2.0
Last Updated:Jul 26, 2024
Links: GitHub  ·  Packagist
Maintainer: clarkeash

Country Codes

Validates 2 & 3 character country codes.

Installation

composer require laravel-validation-rules/country-codes

Usage

Validate a 2 character country code.

use LVR\CountryCode\Two;

$request->validate([
    'country' => ['required', new Two],
]);

Validate a 3 character country code.

use LVR\CountryCode\Three;

$request->validate([
    'country' => ['required', new Three],
]);