https://github.com/thiagoprz/cpf-validator
Laravel package to validate CPF (Brazilian taxpayer identification number)
https://github.com/thiagoprz/cpf-validator
brasil cpf cpf-validador cpf-validation laravel
Last synced: about 1 month ago
JSON representation
Laravel package to validate CPF (Brazilian taxpayer identification number)
- Host: GitHub
- URL: https://github.com/thiagoprz/cpf-validator
- Owner: thiagoprz
- Created: 2019-07-19T14:44:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-15T13:54:33.000Z (over 1 year ago)
- Last Synced: 2025-01-27T16:04:08.977Z (3 months ago)
- Topics: brasil, cpf, cpf-validador, cpf-validation, laravel
- Language: PHP
- Size: 73.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**CPF Validator**
==
A Laravel package to work with CPF validation.CPF is an individual taxpayer identification number given to people living in Brazil, both native Brazilians and resident foreigners.
Installation
--`` composer install thiagoprz/cpf-validator ``
Usage
--
```
validate($request, [
'cpf' => 'cpf', // CPF validation
'cpf2' => 'cpf:true', // CPF validation allowing empty value
...
]);
...
}
...
}
```