Answers for "laravel validator alpha num space"

PHP
1

laravel validation alphanumeric with spaces

[
    'field' => 'regex:/[a-zA-Z0-9s]+/',
]
Posted by: Guest on October-21-2020
0

laravel validation alphanumeric with spaces

[
    'field' => 'regex:/^[a-zA-Z0-9s]+$/',
]
Posted by: Guest on October-21-2020

Browse Popular Code Answers by Language