milwad-dev / laravel-validate

The Laravel-Validate package enhanced Laravel validation capabilities with custom rules and methods for simplified and efficient validation logic.
https://packagist.org/packages/milwad/laravel-validate
MIT License
456 stars 39 forks source link

[1.x] Add phone number rule, TG,NE,GW,TD,CM,BF,AO #50

Closed Claudye closed 1 year ago

Claudye commented 1 year ago

Add phone number rule

milwad-dev commented 1 year ago

@Claudye One tip, add country name into comment for CountryPhoneCallback. For ex:

    protected function validateNE() // Nigeria
    {
        return preg_match('/^(\+227|00227|227)?\d{8}$/', $this->value);
    }
Claudye commented 1 year ago

Ok