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.
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.
You can either change the file name, or add this to your ParticipationsPerStation.php
in Nova/Metrics
public function name()
{
return 'Different Name';
}
You can also just set the name in your metric using the name property like this.
public $name = 'Total Departments';