Reputation: 635
I'm trying to validate a text field using Laravel's validation class. The same text field can either have exactly 8 digits or 16 digits. The below code did not work.
$validationRules = [
'number' => 'required|digits:8/16',
];
Upvotes: 1
Views: 396
Reputation: 153
Try this
$validationRules = [
'number' => 'required|regex:/^(\d{8}|\d{16})$/',
];
Upvotes: 3