Laravel 5 Validation Trim

后端 未结 8 937
梦谈多话
梦谈多话 2020-12-18 05:23

I am a beginner in Laravel 5.

How can I remove whitespaces in validator?? i have read the documentation but there is no validator for trim(remove whitespaces).

8条回答
  •  半阙折子戏
    2020-12-18 06:01

    In Laravel 5.2 or 5.3 you can use trim for spaces remove like this

    $input = array_map('trim', $request->all());

    so this will remove all space form inputs that posted and validation will work fine

提交回复
热议问题