Dennis Nedry
Dennis Nedry

Reputation: 4757

Laravel Nova Metric card display custom label

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.

l

Upvotes: 5

Views: 3511

Answers (2)

Matovu Ronald
Matovu Ronald

Reputation: 822

You can also just set the name in your metric using the name property like this.

public $name = 'Total Departments';

Upvotes: 4

MohammadAbusaleh
MohammadAbusaleh

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

Related Questions