Custom validation message for min attribute

It seems to me that the custom validation for a minimum numeric attribute is not working as expected.

->validationMessages([
'min.numeric' => __('Custom message.'),
])

These array validations seem to be the issue.
Solution
->validationMessages([
    'min' => __('Custom message.')
])


?
Was this page helpful?