Laravel Nova 指标值格式无效
Laravel Nova Metrics Value format not working
我似乎无法让 Nova 的价值指标格式发挥作用。当我将 属性 添加到我的 return.
时,什么也没有发生
有什么可能出错的提示吗?
$total = DB::table(hello')->sum(DB::raw('bye'));
return $this->result($total)->format("0,0");
你必须return一个对象,例如:
return (new ValueResult($total))
->currency('$ ')
->format('0,0');
我似乎无法让 Nova 的价值指标格式发挥作用。当我将 属性 添加到我的 return.
时,什么也没有发生有什么可能出错的提示吗?
$total = DB::table(hello')->sum(DB::raw('bye'));
return $this->result($total)->format("0,0");
你必须return一个对象,例如:
return (new ValueResult($total))
->currency('$ ')
->format('0,0');