required_if Laravel 5 validation

前端 未结 4 1361
悲&欢浪女
悲&欢浪女 2020-12-02 22:11

I have form that a user can fill-out for selling their home. And for one of the in puts, a user must select weather it will be \"For Sale\" or \"For Rent\". If it is For Sal

4条回答
  •  情歌与酒
    2020-12-02 22:44

    There can be another situation when, the requirement will be required if another field is not present, if someone is in this situation, you can do

    'your_field.*' => 'required_unless:dependency_field.*,
    

提交回复
热议问题