Answers for "only alphanumeric and space validation in laravel"

PHP
1

laravel validation alphanumeric with spaces

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

laravel validation alphanumeric with spaces

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

Code answers related to "only alphanumeric and space validation in laravel"

Browse Popular Code Answers by Language