rap2hpoutre/laravel-credit-card-validator
Laravel credit card validator
132,561
21
| Install | |
|---|---|
composer require rap2hpoutre/laravel-credit-card-validator |
|
| Latest Version: | v1.0.0 |
| PHP: | ^7.0 |
| License: | MIT |
| Last Updated: | Oct 27, 2020 |
| Links: | GitHub · Packagist |
Maintainer: rap2hpoutre
Laravel Credit Card Validator
Adds some minimal validation rules for credit card.
Install
Install via composer
composer require rap2hpoutre/laravel-credit-card-validator
Add Service Provider to config/app.php in providers section
Rap2hpoutre\LaravelCreditCardValidator\ServiceProvider::class,
Usage
Add this to your validation rules:
// Add this in your controller method
$this->validate($request, [
'credit-card-number' => 'required|ccn',
'credit-card-date' => 'required|ccd',
'credit-validation-code' => 'required|cvc',
]);
Related Packages
laravel-validation-rules/credit-card
Validate credit card number, expiration date, cvc
2,463,300
245
smart-twists/iranian-information-validator
Additional Iranian Information Validator Functions for the Laravel Framework
443
5
ellisio/laravel-phone
A phone validator for Laravel using the free Twilio phone lookup service.
29,983
11
