You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**type**: ``string`` **default**: ``This value should be {{ limit }} or more.``
104
+
**type**: ``string`` **default**: ``This value is too short. It should have {{ limit }} characters or more.`` when validating a string, or ``This collection should contain {{ limit }} elements or more.`` when validating a collection.
81
105
82
-
The message that will be shown if the underlying value is less than the `min`_
83
-
option.
106
+
The message that will be shown if the underlying value's length or collection elements
107
+
count is less than the `min`_ option.
84
108
85
109
maxMessage
86
110
~~~~~~~~~~
87
111
88
-
**type**: ``string`` **default**: ``This value should be {{ limit }} or less.``
89
-
90
-
The message that will be shown if the underlying value is more than the `max`_
91
-
option.
112
+
**type**: ``string`` **default**: ``This value is too long. It should have {{ limit }} characters or less.`` when validating a string, or ``This collection should contain {{ limit }} elements or less.`` when validating a collection.
92
113
93
-
invalidMessage
94
-
~~~~~~~~~~~~~~
114
+
The message that will be shown if the underlying value's length or collection elements
115
+
count is more than the `max`_ option.
95
116
96
-
**type**: ``string`` **default**: ``This value should be a valid number.``
117
+
exactMessage
118
+
~~~~~~~~~~~~
97
119
98
-
The message that will be shown if the underlying value is not a number (per
99
-
the `is_numeric`_ PHP function).
120
+
**type**: ``string`` **default**: ``This value should have exactly {{ limit }} characters.`` when validating a string, or ``This collection should contain exactly {{ limit }} elements.`` when validating a collection.
0 commit comments