#How do i change SubNavigation Label?
4 messages · Page 1 of 1 (latest)
use navigationLabel in the ViewProduct.php, EditProduct.php
protected static ?string $navigationLabel = 'Custom Label';
//or
public static function getNavigationLabel(): string
{
return __('Custom Label');
}
thanks!