Reputation: 4757
I'm trying to implement a card with a trend-metric in Laravel Nova. Is there any way to update the label of the card?
So in my case change "Participations Per Station" into something else.
Upvotes: 5
Views: 3511
Reputation: 822
You can also just set the name in your metric using the name property like this.
public $name = 'Total Departments';
Upvotes: 4
Reputation: 118
You can either change the file name, or add this to your ParticipationsPerStation.php
in Nova/Metrics
public function name()
{
return 'Different Name';
}
Upvotes: 9