Answers for "laravel validation alphanumeric with spaces"

PHP
1

laravel validation alphanumeric with spaces

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

laravel validation alphanumeric with spaces

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

laravel validation alphanumeric with spaces

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

Code answers related to "laravel validation alphanumeric with spaces"

Browse Popular Code Answers by Language