php - laravel怎么验证两个字段必须有一个必填?
PHP中文网
PHP中文网 2017-04-10 17:39:06
0
1
540

比如:email 和 phone 有一个填了就验证通过,验证规则该怎么写?

PHP中文网
PHP中文网

认证0级讲师

reply all(1)
大家讲道理
'email' => 'required_without:phone',
'phone' => 'required_without:email',

详见:
https://laravel.com/docs/5.3/...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template