|
19 | 19 | "alpha" => "The :attribute may only contain letters.", |
20 | 20 | "alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.", |
21 | 21 | "alpha_num" => "The :attribute may only contain letters and numbers.", |
| 22 | + "array" => "The :attribute must be an array.", |
22 | 23 | "before" => "The :attribute must be a date before :date.", |
23 | 24 | "between" => array( |
24 | 25 | "numeric" => "The :attribute must be between :min - :max.", |
25 | 26 | "file" => "The :attribute must be between :min - :max kilobytes.", |
26 | 27 | "string" => "The :attribute must be between :min - :max characters.", |
| 28 | + "array" => "The :attribute must have between :min - :max items.", |
27 | 29 | ), |
28 | 30 | "confirmed" => "The :attribute confirmation does not match.", |
29 | 31 | "date" => "The :attribute is not a valid date.", |
|
41 | 43 | "numeric" => "The :attribute may not be greater than :max.", |
42 | 44 | "file" => "The :attribute may not be greater than :max kilobytes.", |
43 | 45 | "string" => "The :attribute may not be greater than :max characters.", |
| 46 | + "array" => "The :attribute may not have more than :max items.", |
44 | 47 | ), |
45 | 48 | "mimes" => "The :attribute must be a file of type: :values.", |
46 | 49 | "min" => array( |
47 | 50 | "numeric" => "The :attribute must be at least :min.", |
48 | 51 | "file" => "The :attribute must be at least :min kilobytes.", |
49 | 52 | "string" => "The :attribute must be at least :min characters.", |
| 53 | + "array" => "The :attribute must have at least :min items.", |
50 | 54 | ), |
51 | 55 | "not_in" => "The selected :attribute is invalid.", |
52 | 56 | "numeric" => "The :attribute must be a number.", |
|
60 | 64 | "numeric" => "The :attribute must be :size.", |
61 | 65 | "file" => "The :attribute must be :size kilobytes.", |
62 | 66 | "string" => "The :attribute must be :size characters.", |
| 67 | + "array" => "The :attribute must contain :size items.", |
63 | 68 | ), |
64 | 69 | "unique" => "The :attribute has already been taken.", |
65 | 70 | "url" => "The :attribute format is invalid.", |
|
0 commit comments