方法 Illuminate\Validation\Validator::validateNullablerequired 不存在

Method Illuminate\Validation\Validator::validateNullablerequired does not exist

这里究竟出了什么问题?

当我要提交表单时出现此错误。请给我解决方案。

我找到解决办法了!!! 我只是忘了放“|”在 Nullable 和 Required 之间 这就是解决方案 'sometimes|nullable|string'

我通过将数字更改为数字来解决,因为没有 laravel 验证名称作为 number

之前

'required|number|max:10'

之后

 'required|numeric|max:10'