Search code examples
laravelvalidationlaravel-validation

Laravel Field Validation: Either 8 or 16 Digits is Allowed


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',
    ];

Solution

  • Try this

     $validationRules = [
        'number' => 'required|regex:/^(\d{8}|\d{16})$/',
     ];