From 663f020c5f92978c63208390bb4bb6515d074dff Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Fri, 16 Oct 2020 21:44:34 +1100 Subject: [PATCH] add 'multiple_of' translation --- resources/lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index a65914f9d0f..2e2820b03d5 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -90,6 +90,7 @@ 'string' => 'The :attribute must be at least :min characters.', 'array' => 'The :attribute must have at least :min items.', ], + 'multiple_of' => 'The :attribute must be a multiple of :value', 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.',