wiwatsrt / nova-number-field
Laravel Nova 字段。
dev-master
2018-11-11 11:18 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-09-12 04:49:55 UTC
README
使用 numeral.js 格式化数字
安装
composer require wiwatsrt/nova-number-field
使用方法
namespace App\Nova; use Wiwatsrt\NovaNumberField\NovaNumberField as Currency; class Invoice extends Resource { // ... public function fields(Request $request) { return [ // ... Currency::make('Subtotal') ->format('0,0.00'), // ... ]; } }