Laravel Nova Metrics值格式不起作用

问题描述 投票:0回答:1

我似乎无法获得Nova的格式以使Value Metrics发挥作用。当我将属性添加到返回中时,什么也没发生。

任何提示可能有什么问题吗?

$total = DB::table(hello')->sum(DB::raw('bye'));
return $this->result($total)->format("0,0");
php laravel eloquent laravel-nova
1个回答
0
投票

您必须返回一个对象,例如:

return (new ValueResult($total))
            ->currency('$ ')
            ->format('0,0');
© www.soinside.com 2019 - 2024. All rights reserved.