Creditcard Rule
Validate Credit Card Numbers
170k Downloads / Month
Open Source MIT License
170k Downloads / Month
Open Source MIT License
Validate credit card numbers in Laravel with Intervention Validation. Luhn algorithm and format verification.
public Intervention\Validation\Rules\Creditcard::__construct()
The field under validation must be a valid credit card number.
none
use Illuminate\Support\Facades\Validator; use Intervention\Validation\Rules\Creditcard; $validator = Validator::make($request->all(), [ 'attribute-key' => new Creditcard(), ]);