Looking to hire Laravel developers? Try LaraJobs

laravel-luhn-validator maintained by themismin

Description
ID card valudator luhn algorithm validator.
Author
Last update
2018/08/31 05:34 (dev-master)
License
Links
Downloads
781

Comments
comments powered by Disqus

laravel-luhn-validator

ID card valudator, luhn algorithm validator.

Laravel 身份验证, luhn 算法验证

安装

composer require themismin/laravel-luhn-validator

使用

$rules = [
    'card_number' => [
        'required',
        'luhn'
    ]
];