Merge pull request #2377 from rmobis/master
Tiny inconsistency between 'between' and 'digits_between' validation rules messages
This commit is contained in:
commit
65842ae55a
|
@ -22,10 +22,10 @@
|
||||||
"array" => "The :attribute must be an array.",
|
"array" => "The :attribute must be an array.",
|
||||||
"before" => "The :attribute must be a date before :date.",
|
"before" => "The :attribute must be a date before :date.",
|
||||||
"between" => array(
|
"between" => array(
|
||||||
"numeric" => "The :attribute must be between :min - :max.",
|
"numeric" => "The :attribute must be between :min and :max.",
|
||||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
"file" => "The :attribute must be between :min and :max kilobytes.",
|
||||||
"string" => "The :attribute must be between :min - :max characters.",
|
"string" => "The :attribute must be between :min and :max characters.",
|
||||||
"array" => "The :attribute must have between :min - :max items.",
|
"array" => "The :attribute must have between :min and :max items.",
|
||||||
),
|
),
|
||||||
"confirmed" => "The :attribute confirmation does not match.",
|
"confirmed" => "The :attribute confirmation does not match.",
|
||||||
"date" => "The :attribute is not a valid date.",
|
"date" => "The :attribute is not a valid date.",
|
||||||
|
|
Loading…
Reference in New Issue