Kornel
Kornel

Reputation: 4294

Laravel Nova Metrics - how to show number without k

I generate metrics with Laravel Nova to show sales. The problem is that it shows me numbers like 0.50k instead of 500

Upvotes: 1

Views: 680

Answers (1)

Kornel
Kornel

Reputation: 4294

To show thousands "normally" you can use the format method like this:

public function calculate(Request $request)
{
    return $this->count($request, Sales::class)->format('0,0');
}

Upvotes: 4

Related Questions