Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel Validation one of two fields must be filled

I have two fields:

QQ

Email

How do I set up a Validator object so that one of these fields must be filled? It doesn't matter which.


$messages = array(     'email.required_without:qq' => Lang::get('messages.mustenteremail'),     'email.email' => Lang::get('messages.emailinvalid'),     'qq.required_without:email' => Lang::get('messages.mustenterqq'), ); 
like image 732
imperium2335 Avatar asked Jan 10 '15 10:01

imperium2335


2 Answers

required_without should work.

It means that the field is required if the other field is not present. If have more than two fields and only one is required, use required_without_all:foo,bar,...

$rules = array(     'Email' => 'required_without:QQ',     'QQ' => 'required_without:Email', ); 
like image 127
lukasgeiter Avatar answered Sep 21 '22 18:09

lukasgeiter


In the example above (given by lucasgeiter) you actually only need one of the conditions not both.

$rules = array(     'Email' => 'required_without:QQ' ); 

If you have both rules then filling neither in will result in TWO error messages being displayed. This way it will check that at least one field is filled in and will only display one error message if neither are filled.

like image 41
omarjebari Avatar answered Sep 21 '22 18:09

omarjebari