``` protected function getFilamentAttributeNameAndLocale($attribute) { $attribute = str_replace('data.', '', $attribute); @list($locale, $name) = @explode('.', $attribute); return [$name, $locale]; } ``` Need to switch places ` @list($name, $locale) = @explode('.', $attribute); `