How do i change SubNavigation Label?

How can i change this sub navigation label or make it translateable?
No description
Solution:
use navigationLabel in the ViewProduct.php, EditProduct.php ```php protected static ?string $navigationLabel = 'Custom Label'; ...
Jump to solution
2 Replies
Solution
LeandroFerreira
LeandroFerreirathis hour
use navigationLabel in the ViewProduct.php, EditProduct.php
protected static ?string $navigationLabel = 'Custom Label';

//or

public static function getNavigationLabel(): string
{
return __('Custom Label');
}
protected static ?string $navigationLabel = 'Custom Label';

//or

public static function getNavigationLabel(): string
{
return __('Custom Label');
}
ashtrath
ashtrathOP8h ago
thanks!

Did you find this page helpful?