我似乎无法使用Nova的格式来使Value Metrics起作用。当我将属性添加到返回中时,什么也没发生。
有什么提示可能有问题吗?
$total = DB::table(hello')->sum(DB::raw('bye'));
return $this->result($total)->format("0,0");
答案 0 :(得分:0)
您必须返回一个对象,例如:
return (new ValueResult($total))
->currency('$ ')
->format('0,0');