laravel alphanumeric validation code example

Example 1: laravel validation alphanumeric with spaces

[
    'field' => 'regex:/[a-zA-Z0-9\s]+/',
]

Example 2: numbric validate laravel

$rules = ['Fno' => 'numeric|min:2|max:5', 'Lno' => 'numeric|min:2'];

Example 3: laravel validation

/**
 * Store a new blog post.
 *
 * @param  Request  $request
 * @return Response
 */
public function store(Request $request)
{
    $validatedData = $request->validate([
        'title' => 'required|unique:posts|max:255',
        'body' => 'required',
    ]);

    // The blog post is valid...
}

Example 4: laravel validation alphanumeric with spaces

[
    'field' => 'regex:/^[a-zA-Z0-9\s]+$/',
]

Example 5: laravel validation alphanumeric with spaces

[
    'field' => 'regex:[a-zA-Z0-9\s]+',
]

Tags:

Php Example