gpt4 book ai didi

php - laravel 验证使用 required with

转载 作者:搜寻专家 更新时间:2023-10-31 21:51:18 25 4
gpt4 key购买 nike

我有三个复选框数组,如 cashchequebank

当我点击银行复选框时,它会显示两个文本框。假设我点击 bank 复选框然后它会显示两个文本框,现在我提交表单。

我如何使用 required_with laravel 验证来验证这两个文本框。

最佳答案

试试这个

'payment-type' 是我设置的必需项(这是您的选择),接下来验证如果付款类型值为 2,则需要'other-type'。

$validator = Validator::make($data, [
'payment-type' => 'required',
'other-type' => 'required_if:payment-type, 2'
], $messages);
return $validator;

关于php - laravel 验证使用 required with,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41377111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com