How to use sometimes rule in Laravel 5 request class

后端 未结 4 497
南笙
南笙 2021-02-12 10:56

I have the following request class:



        
4条回答
  •  鱼传尺愫
    2021-02-12 11:44

    You just need to add the dob key to the array you are returning, along with the validation ruleset to follow, including sometimes.

    In this case:

    'dob' : 'sometimes|required|regex:/[0-9]{2}\/[0-9]{2}\/[0-9]{4}/|valid_date'
    

提交回复
热议问题