From 0b478226db274e0531e407b6efacb6269517bd03 Mon Sep 17 00:00:00 2001 From: sakthimanikandan845 Date: Sat, 21 Sep 2024 15:40:42 +0530 Subject: [PATCH] Update EmailTemplateResource.php In the current resource file, both functions are incorrectly calling themes.label, but they should be calling templates.label. --- src/Resources/EmailTemplateResource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Resources/EmailTemplateResource.php b/src/Resources/EmailTemplateResource.php index 71c2cd1..d541a4b 100644 --- a/src/Resources/EmailTemplateResource.php +++ b/src/Resources/EmailTemplateResource.php @@ -51,12 +51,12 @@ public static function getNavigationSort(): ?int public static function getModelLabel(): string { - return config('filament-email-templates.navigation.themes.label'); + return config('filament-email-templates.navigation.templates.label'); } public static function getPluralModelLabel(): string { - return config('filament-email-templates.navigation.themes.label'); + return config('filament-email-templates.navigation.templates.label'); } public static function getCluster(): string