From 8d3ca07c4cff6d36593625ee4b34e19ce2dba15b Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Sat, 17 Oct 2020 00:25:48 +1100 Subject: [PATCH] add 'multiple_of' translation (#5449) --- 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.',