How to use sometimes rule in Laravel 5 request class

后端 未结 4 836
星月不相逢
星月不相逢 2021-02-12 10:56

I have the following request class:



        
4条回答
  •  情深已故
    2021-02-12 11:53

    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'
    

提交回复
热议问题