|
48 | 48 | 'string' => 'The :attribute must be greater than :value characters.',
|
49 | 49 | 'array' => 'The :attribute must have more than :value items.',
|
50 | 50 | ],
|
51 |
| - 'lt' => [ |
52 |
| - 'numeric' => 'The :attribute must be less than :value.', |
53 |
| - 'file' => 'The :attribute must be less than :value kilobytes.', |
54 |
| - 'string' => 'The :attribute must be less than :value characters.', |
55 |
| - 'array' => 'The :attribute must have less than :value items.', |
56 |
| - ], |
57 | 51 | 'gte' => [
|
58 | 52 | 'numeric' => 'The :attribute must be greater than or equal :value.',
|
59 | 53 | 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
60 | 54 | 'string' => 'The :attribute must be greater than or equal :value characters.',
|
61 | 55 | 'array' => 'The :attribute must have :value items or more.',
|
62 | 56 | ],
|
63 |
| - 'lte' => [ |
64 |
| - 'numeric' => 'The :attribute must be less than or equal :value.', |
65 |
| - 'file' => 'The :attribute must be less than or equal :value kilobytes.', |
66 |
| - 'string' => 'The :attribute must be less than or equal :value characters.', |
67 |
| - 'array' => 'The :attribute must not have more than :value items.', |
68 |
| - ], |
69 | 57 | 'image' => 'The :attribute must be an image.',
|
70 | 58 | 'in' => 'The selected :attribute is invalid.',
|
71 | 59 | 'in_array' => 'The :attribute field does not exist in :other.',
|
|
74 | 62 | 'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
75 | 63 | 'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
76 | 64 | 'json' => 'The :attribute must be a valid JSON string.',
|
| 65 | + 'lt' => [ |
| 66 | + 'numeric' => 'The :attribute must be less than :value.', |
| 67 | + 'file' => 'The :attribute must be less than :value kilobytes.', |
| 68 | + 'string' => 'The :attribute must be less than :value characters.', |
| 69 | + 'array' => 'The :attribute must have less than :value items.', |
| 70 | + ], |
| 71 | + 'lte' => [ |
| 72 | + 'numeric' => 'The :attribute must be less than or equal :value.', |
| 73 | + 'file' => 'The :attribute must be less than or equal :value kilobytes.', |
| 74 | + 'string' => 'The :attribute must be less than or equal :value characters.', |
| 75 | + 'array' => 'The :attribute must not have more than :value items.', |
| 76 | + ], |
77 | 77 | 'max' => [
|
78 | 78 | 'numeric' => 'The :attribute may not be greater than :max.',
|
79 | 79 | 'file' => 'The :attribute may not be greater than :max kilobytes.',
|
|
0 commit comments