Hello,
You can override the static label method within the resource class like this:
public static function label() {
return 'Your own label';
}
You'll find your resource classes in the app/Nova directory. Do not confuse these classes with the identically-named models! Adding the label method to the model will not work.
You can take a look at the Nova\src\Resource.php class to view all the options.