From 9051a027c56a415e81063ad587a143b276956ad9 Mon Sep 17 00:00:00 2001 From: Emaia Date: Wed, 2 Feb 2022 22:57:23 -0300 Subject: [PATCH] Fix alphabetical order --- resources/lang/en/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 5fe5b4124e5..d0e869542b3 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -68,7 +68,6 @@ 'ip' => 'The :attribute must be a valid IP address.', 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'mac_address' => 'The :attribute must be a valid MAC address.', 'json' => 'The :attribute must be a valid JSON string.', 'lt' => [ 'numeric' => 'The :attribute must be less than :value.', @@ -82,6 +81,7 @@ 'string' => 'The :attribute must be less than or equal to :value characters.', 'array' => 'The :attribute must not have more than :value items.', ], + 'mac_address' => 'The :attribute must be a valid MAC address.', 'max' => [ 'numeric' => 'The :attribute must not be greater than :max.', 'file' => 'The :attribute must not be greater than :max kilobytes.',