I have two fields:
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'), );
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', );
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With