This package is a set of diferent validation rules for spanish national id numbers like:
- NIF: "Número de Identificación Fiscal" (tax number for individuals).
- NIE: "Número de Idenfiticación para Extranjeros" (identity number for foreigners).
- CIF: "Código de Identificación Fiscal" (tax number for companies).
- NSS: "Número de la Seguridad Social" (national security number).
Also the package include validators for:
- IBAN: International Bank Account Number.
- Postal codes: Spanish postal codes.
- Phone number: Spanish phone numbers format.
The package can be installed via composer:
composer require orumad/laravel-spanish-validator
The package will automatically register itself.
If you want to edit the validation messages, you should run the following command to publish the translation files into your resources/lang
folder:
php artisan vendor:publish --provider="Orumad\SpanishValidator\SpanishValidatorServiceProvider"
Determine if the input is a valid "Número de Identificación Fiscal" (tax number for individuals).
Determine if the field under validation is a valid "Número de Idenfiticación para Extranjeros" (identity number for foreigners).
This rule will validate if the input field is a valid "Código de Identificación Fiscal" (tax number for companies).
This rule validates if the input is a valid spanish tax number: NIF or NIE or CIF.
Will validate if the input is a valid personal id number in Spain (NIF or NIE).
Determine if the field under validation is a valid "Número de la Seguridad Social"_ (national security number).
Test if the input field is a valid IBAN bank account number. (This uses the package globalcitizen/php-iban
to check the validity of IBAN)
Will check if the postal code is a valid spanish postal code.
This tule validates if the input field content is a valid spanish phone number format.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email dev@danielmunoz.io instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.