laravelwebdev / numeric
A Laravel Nova field.
Installs: 27
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: ^7.3|^8.0
README
A Laravel Nova field that automatically adds thousand separator. Perfect for currency, quantities, or any numeric input that needs better readability.
Features
- Real-time thousand separator formatting (e.g., 1000 → 1.000)
- Works with copy/paste
- Maintains numeric value in database
- Compatible with Laravel Nova 4.x
Requirements
- Laravel Nova 4.x or higher
- PHP 7.3 or higher
Installation
You can install the package via composer:
composer require laravelwebdev/numeric
Usage
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.
License
The MIT License (MIT).