From 78e1d56c4285392f96fd90b445fef2faa7a8b9c7 Mon Sep 17 00:00:00 2001 From: Alex Elkins Date: Wed, 29 Sep 2021 16:29:27 -0400 Subject: [PATCH] Update validation.php (#5699) modify the grammar for lte and gte validation to have a parallel structure --- resources/lang/en/validation.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 21791139..9fab4d92 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -53,9 +53,9 @@ 'array' => 'The :attribute must have more than :value items.', ], 'gte' => [ - 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', + 'numeric' => 'The :attribute must be greater than or equal to :value.', + 'file' => 'The :attribute must be greater than or equal to :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal to :value characters.', 'array' => 'The :attribute must have :value items or more.', ], 'image' => 'The :attribute must be an image.', @@ -73,9 +73,9 @@ 'array' => 'The :attribute must have less than :value items.', ], 'lte' => [ - 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', + 'numeric' => 'The :attribute must be less than or equal to :value.', + 'file' => 'The :attribute must be less than or equal to :value kilobytes.', + 'string' => 'The :attribute must be less than or equal to :value characters.', 'array' => 'The :attribute must not have more than :value items.', ], 'max' => [