ThemisMin / laravel-luhn-validator by themismin

780
0
2
Package Data
Maintainer Username: themismin
Maintainer Contact: themismin@gmail.com (themismin)
Package Create Date: 2018-08-31
Package Last Update: 2018-08-31
Language: PHP
License: MIT
Last Refreshed: 2024-04-11 03:19:21
Package Statistics
Total Downloads: 780
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-luhn-validator

ID card valudator, luhn algorithm validator.

Laravel 身份验证, luhn 算法验证

安装

composer require themismin/laravel-luhn-validator

使用

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