validation rules sorting consistency (#6031)
This commit is contained in:
parent
69e2cce9cb
commit
21964ec81f
|
@ -72,7 +72,6 @@
|
||||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||||
'json' => 'The :attribute must be a valid JSON string.',
|
'json' => 'The :attribute must be a valid JSON string.',
|
||||||
'lowercase' => 'The :attribute must be lowercase.',
|
'lowercase' => 'The :attribute must be lowercase.',
|
||||||
'uppercase' => 'The :attribute must be uppercase.',
|
|
||||||
'lt' => [
|
'lt' => [
|
||||||
'array' => 'The :attribute must have less than :value items.',
|
'array' => 'The :attribute must have less than :value items.',
|
||||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||||
|
@ -140,6 +139,7 @@
|
||||||
'timezone' => 'The :attribute must be a valid timezone.',
|
'timezone' => 'The :attribute must be a valid timezone.',
|
||||||
'unique' => 'The :attribute has already been taken.',
|
'unique' => 'The :attribute has already been taken.',
|
||||||
'uploaded' => 'The :attribute failed to upload.',
|
'uploaded' => 'The :attribute failed to upload.',
|
||||||
|
'uppercase' => 'The :attribute must be uppercase.',
|
||||||
'url' => 'The :attribute must be a valid URL.',
|
'url' => 'The :attribute must be a valid URL.',
|
||||||
'uuid' => 'The :attribute must be a valid UUID.',
|
'uuid' => 'The :attribute must be a valid UUID.',
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue