validation-inline.php
7.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'This field must be accepted.',
'accepted_if' => 'This field must be accepted when :other is :value.',
'active_url' => 'This is not a valid URL.',
'after' => 'This must be a date after :date.',
'after_or_equal' => 'This must be a date after or equal to :date.',
'alpha' => 'This field may only contain letters.',
'alpha_dash' => 'This field may only contain letters, numbers, dashes and underscores.',
'alpha_num' => 'This field may only contain letters and numbers.',
'array' => 'This field must be an array.',
'attached' => 'This field is already attached.',
'before' => 'This must be a date before :date.',
'before_or_equal' => 'This must be a date before or equal to :date.',
'between' => [
'numeric' => 'This value must be between :min and :max.',
'file' => 'This file must be between :min and :max kilobytes.',
'string' => 'This string must be between :min and :max characters.',
'array' => 'This content must have between :min and :max items.',
],
'boolean' => 'This field must be true or false.',
'confirmed' => 'The confirmation does not match.',
'current_password' => 'The password is incorrect.',
'date' => 'This is not a valid date.',
'date_equals' => 'This must be a date equal to :date.',
'date_format' => 'This does not match the format :format.',
'different' => 'This value must be different from :other.',
'digits' => 'This must be :digits digits.',
'digits_between' => 'This must be between :min and :max digits.',
'dimensions' => 'This image has invalid dimensions.',
'distinct' => 'This field has a duplicate value.',
'email' => 'This must be a valid email address.',
'ends_with' => 'This must end with one of the following: :values.',
'exists' => 'The selected value is invalid.',
'file' => 'The content must be a file.',
'filled' => 'This field must have a value.',
'gt' => [
'numeric' => 'The value must be greater than :value.',
'file' => 'The file size must be greater than :value kilobytes.',
'string' => 'The string must be greater than :value characters.',
'array' => 'The content must have more than :value items.',
],
'gte' => [
'numeric' => 'The value must be greater than or equal to :value.',
'file' => 'The file size must be greater than or equal to :value kilobytes.',
'string' => 'The string must be greater than or equal to :value characters.',
'array' => 'The content must have :value items or more.',
],
'image' => 'This must be an image.',
'in' => 'The selected value is invalid.',
'in_array' => 'This value does not exist in :other.',
'integer' => 'This must be an integer.',
'ip' => 'This must be a valid IP address.',
'ipv4' => 'This must be a valid IPv4 address.',
'ipv6' => 'This must be a valid IPv6 address.',
'json' => 'This must be a valid JSON string.',
'lt' => [
'numeric' => 'The value must be less than :value.',
'file' => 'The file size must be less than :value kilobytes.',
'string' => 'The string must be less than :value characters.',
'array' => 'The content must have less than :value items.',
],
'lte' => [
'numeric' => 'The value must be less than or equal to :value.',
'file' => 'The file size must be less than or equal to :value kilobytes.',
'string' => 'The string must be less than or equal to :value characters.',
'array' => 'The content must not have more than :value items.',
],
'max' => [
'numeric' => 'The value may not be greater than :max.',
'file' => 'The file size may not be greater than :max kilobytes.',
'string' => 'The string may not be greater than :max characters.',
'array' => 'The content may not have more than :max items.',
],
'mimes' => 'This must be a file of type: :values.',
'mimetypes' => 'This must be a file of type: :values.',
'min' => [
'numeric' => 'The value must be at least :min.',
'file' => 'The file size must be at least :min kilobytes.',
'string' => 'The string must be at least :min characters.',
'array' => 'The value must have at least :min items.',
],
'multiple_of' => 'The value must be a multiple of :value',
'not_in' => 'The selected value is invalid.',
'not_regex' => 'This format is invalid.',
'numeric' => 'This must be a number.',
'password' => 'The password is incorrect.',
'present' => 'This field must be present.',
'regex' => 'This format is invalid.',
'relatable' => 'This field may not be associated with this resource.',
'required' => 'This field is required.',
'required_if' => 'This field is required when :other is :value.',
'required_unless' => 'This field is required unless :other is in :values.',
'required_with' => 'This field is required when :values is present.',
'required_with_all' => 'This field is required when :values are present.',
'required_without' => 'This field is required when :values is not present.',
'required_without_all' => 'This field is required when none of :values are present.',
'prohibited' => 'This field is prohibited.',
'prohibited_if' => 'This field is prohibited when :other is :value.',
'prohibited_unless' => 'This field is prohibited unless :other is in :values.',
'prohibits' => 'This field prohibits :other from being present.',
'same' => 'The value of this field must match the one from :other.',
'size' => [
'numeric' => 'The value must be :size.',
'file' => 'The file size must be :size kilobytes.',
'string' => 'The string must be :size characters.',
'array' => 'The content must contain :size items.',
],
'starts_with' => 'This must start with one of the following: :values.',
'string' => 'This must be a string.',
'timezone' => 'This must be a valid timezone.',
'unique' => 'This has already been taken.',
'uploaded' => 'This failed to upload.',
'url' => 'This must be a valid URL.',
'uuid' => 'This must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
];