laravelwebdev/numeric

A Laravel Nova field.

1.0.1 2025-01-08 22:41 UTC

This package is auto-updated.

Last update: 2025-05-08 23:34:40 UTC


README

A Laravel Nova field that automatically adds thousand separator. Perfect for currency, quantities, or any numeric input that needs better readability.

Create Resource

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).