From b99640ecb23bc7a64ad7084291c5fc9cc5964303 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 10 May 2023 02:40:55 -0700 Subject: [PATCH] Added ends_with validation message Signed-off-by: snipe --- resources/lang/en/validation.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 31c9dcd85d..df514da6f9 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -67,6 +67,8 @@ return [ 'array' => 'The :attribute must have at least :min items.', ], 'starts_with' => 'The :attribute must start with one of the following: :values.', + 'ends_with' => 'The :attribute must end with one of the following: :values.', + 'not_in' => 'The selected :attribute is invalid.', 'numeric' => 'The :attribute must be a number.', 'present' => 'The :attribute field must be present.',