File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,27 +47,27 @@ public static function getModel(): string
4747
4848 public static function getNavigationGroup (): ?string
4949 {
50- return __ ('Emails ' );
50+ return __ (config ( ' filament-mails.navigation.group ' ) ?? 'Emails ' );
5151 }
5252
5353 public static function getNavigationLabel (): string
5454 {
55- return __ ('Emails ' );
55+ return __ (config ( ' filament-mails.navigation.label ' ) ?? 'Emails ' );
5656 }
5757
5858 public static function getLabel (): ?string
5959 {
60- return __ ('Email ' );
60+ return __ (config ( ' filament-mails.label ' ) ?? 'Email ' );
6161 }
6262
6363 public static function getNavigationIcon (): ?string
6464 {
65- return 'heroicon-o-envelope ' ;
65+ return config ( ' filament-mails.navigation.icon ' ) ?? 'heroicon-o-envelope ' ;
6666 }
6767
6868 public function getTitle (): string
6969 {
70- return __ ('Emails ' );
70+ return __ (config ( ' filament-mails.title ' ) ?? 'Emails ' );
7171 }
7272
7373 public static function infolist (Infolist $ infolist ): Infolist
You can’t perform that action at this time.
0 commit comments