laravel-validation-rules / credit-card

Credit Card Validation
https://laravel-validation-rules.github.io/
Apache License 2.0
227 stars 69 forks source link

Problems validating the month #16

Closed josuedor closed 5 years ago

josuedor commented 5 years ago
$this->validate($request, [
            'credit_card_expiration_date' => ['required', new CardExpirationDate('Y-m')]
        ]);

When insert 2020/13, 2020/14 ..., until 2020/99 passes the validation.

Regards.