我尝试了很多验证文档中的方法,但都给出了同样的错误说明:
Array to string conversion
下面是我如何添加数组的:
$this->validate($request,[
'employee' => 'required|in:'.$employee->pluck('id')->toArray(),
],[
'employee.in' => 'employee does not exists',
]);
对于如何实现这一点有什么提示吗?
我创建了一个自定义验证器,但仍然无法传递数组。