From 882b938e5751a574f1f0bf5be116ee8c4ce3e017 Mon Sep 17 00:00:00 2001 From: bambamboole Date: Thu, 15 Aug 2024 19:03:26 +0200 Subject: [PATCH] add validation.values to ignore_keys --- config/config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/config.php b/config/config.php index 5a8bbb9..6a48f0b 100644 --- a/config/config.php +++ b/config/config.php @@ -5,8 +5,9 @@ 'dumper' => \Bambamboole\LaravelTranslationDumper\TranslationDumper::class, 'dump_prefix' => 'x-', 'ignore_keys' => [ - // This key is used by Laravel validator to check if a custom validation message is present + // These keys is used by Laravel validator to check if a custom validation message is present 'validation.custom', + 'validation.values', // Ignore namespaced keys since it is not implemented yet '::', ],