laravelwebdev/numeric is a Laravel package for a laravel nova field..
It currently has 0 GitHub stars and 45 downloads on Packagist (latest version 1.0.1).
Install it with composer require laravelwebdev/numeric.
Discover more Laravel packages by laravelwebdev
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel Nova field that automatically adds thousand separator. Perfect for currency, quantities, or any numeric input that needs better readability.

You can install the package via composer:
composer require laravelwebdev/numeric
use Laravelwebdev\Numeric\Numeric;
public function fields(Request $request)
{
return [
Numeric::make('Price'),
];
}
To change the separator:
use Laravelwebdev\Numeric\Numeric;
public function fields(Request $request)
{
return [
Numeric::make('Price')->separator(' '),
];
}
That will give you separate space while typing in the input field.
The MIT License (MIT).