LaravelPackages.net
Acme Inc.
Toggle sidebar
cgdsoftware/cnp-validator

Romanian CNP validator for Laravel

5
0
v2.1.1
About cgdsoftware/cnp-validator

cgdsoftware/cnp-validator is a Laravel package for romanian cnp validator for laravel. It currently has 0 GitHub stars and 5 downloads on Packagist (latest version v2.1.1). Install it with composer require cgdsoftware/cnp-validator. Discover more Laravel packages by cgdsoftware or browse all Laravel packages to compare alternatives.

Last updated

CNP Validator

Codacy Badge StyleCI License Total Downloads Latest Stable Version

Romanian CNP validator for Laravel

Instalation Steps

  1. Add 'LaravelLiberu\CnpValidator\CnpValidatorServiceProvider::class' to your providers list in config/app.php.

  2. Use the CNP validator in your ValidateModelRequest validation class

    public function rules()
    {
        return [
            'cnp' => [
                    'max:13',
                    'cnp',
                    'nullable',
                    request()->getMethod() == 'PATCH'
                        ? Rule::unique('users', 'nin')->ignore(route('user')->id)
                        : Rule::unique('users', 'nin')
                ],
        ];
    }
    

Notes

Don't forget to add the translation for the validator error message in resources/lang/**/validation.php under the cnp key.

The Laravel Liberu Core package comes with this package included.

Contributions

are welcome. Pull requests are great, but issues are good too.

License

This package is released under the MIT license.

Comments