PHPackages                             pdewringerswis/nova-money-field - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. pdewringerswis/nova-money-field

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

pdewringerswis/nova-money-field
===============================

A Laravel Nova field for Money.

2.0.1(4w ago)010↓100%MITVuePHP ^8.0

Since May 12Pushed 4w agoCompare

[ Source](https://github.com/pimdewringerSwis/nova-money-field)[ Packagist](https://packagist.org/packages/pdewringerswis/nova-money-field)[ RSS](/packages/pdewringerswis-nova-money-field/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Money Field for Laravel Nova
============================

[](#money-field-for-laravel-nova)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4d65fd54165bbddcd92eaa213f973e5a0fe11a0606aaf69f8009b67bb141cebf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7679756c6461736865762f6e6f76612d6d6f6e65792d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vyuldashev/nova-money-field)[![Total Downloads](https://camo.githubusercontent.com/061efa1704bb872277731026f490ccae00d4a9d3502e39d3e0aae1299c76bf5d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7679756c6461736865762f6e6f76612d6d6f6e65792d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vyuldashev/nova-money-field)

[![screenshot 1](https://raw.githubusercontent.com/vyuldashev/nova-money-field/master/docs/user-details.png)](https://raw.githubusercontent.com/vyuldashev/nova-money-field/master/docs/user-details.png)

Installation
------------

[](#installation)

You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require vyuldashev/nova-money-field
```

Usage
-----

[](#usage)

In resource:

```
// ...
use Vyuldashev\NovaMoneyField\Money;

public function fields(Request $request)
{
    return [
        // ...
        Money::make('Balance'),
    ];
}
```

USD currency is used by default, you can change this by passing second argument:

```
Money::make('Balance', 'EUR'),
```

You may use `locale` method to define locale for formatting value, by default value will be formatted using browser locale:

```
Money::make('Balance')->locale('ru-RU'),
```

If you store money values in database in minor units use `storedInMinorUnits` method. Field will automatically convert minor units to base value for displaying and to minor units for storing:

```
Money::make('Balance', 'EUR')->storedInMinorUnits(),
```

If you need to use a name that doesn't convert to the column name (eg 'Balance' as name and `remaining_balance` as column) you can pass this as the 3rd argument to the make/constructor.

Please Note: that this, along with all field column names, should be present and usable within your model class else you may encounter SQL errors.

```
Money::make('Balance', 'EUR', 'remaining_balance'),
```

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance94

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

28d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b63b7e0605defc550c4cbd4aa43633a4ac8eeeedb37f1d1d3d700be5f2901510?d=identicon)[pimdewringerSwis](/maintainers/pimdewringerSwis)

---

Top Contributors

[![vyuldashev](https://avatars.githubusercontent.com/u/1809081?v=4)](https://github.com/vyuldashev "vyuldashev (30 commits)")[![stefblokdijk](https://avatars.githubusercontent.com/u/15145744?v=4)](https://github.com/stefblokdijk "stefblokdijk (9 commits)")[![zek](https://avatars.githubusercontent.com/u/3463291?v=4)](https://github.com/zek "zek (7 commits)")[![BinaryKitten](https://avatars.githubusercontent.com/u/67553?v=4)](https://github.com/BinaryKitten "BinaryKitten (6 commits)")[![JapSeyz](https://avatars.githubusercontent.com/u/2234034?v=4)](https://github.com/JapSeyz "JapSeyz (3 commits)")[![mathieutu](https://avatars.githubusercontent.com/u/11351322?v=4)](https://github.com/mathieutu "mathieutu (2 commits)")[![glennjacobs](https://avatars.githubusercontent.com/u/647407?v=4)](https://github.com/glennjacobs "glennjacobs (2 commits)")[![pimdewringerSwis](https://avatars.githubusercontent.com/u/198086411?v=4)](https://github.com/pimdewringerSwis "pimdewringerSwis (1 commits)")[![dependabot-support](https://avatars.githubusercontent.com/u/112581971?v=4)](https://github.com/dependabot-support "dependabot-support (1 commits)")

---

Tags

laravelnovanova-5

### Embed Badge

![Health badge](/badges/pdewringerswis-nova-money-field/health.svg)

```
[![Health](https://phpackages.com/badges/pdewringerswis-nova-money-field/health.svg)](https://phpackages.com/packages/pdewringerswis-nova-money-field)
```

###  Alternatives

[ebess/advanced-nova-media-library

Laravel Nova tools for managing the Spatie media library.

6163.5M22](/packages/ebess-advanced-nova-media-library)[optimistdigital/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2862.1M6](/packages/optimistdigital-nova-sortable)[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2862.0M9](/packages/outl1ne-nova-sortable)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17818.7k](/packages/markwalet-nova-modal-response)[vyuldashev/nova-money-field

A Laravel Nova field for Money.

73803.7k1](/packages/vyuldashev-nova-money-field)[norman-huth/nova-assets-changer

Change Nova resources

2575.3k](/packages/norman-huth-nova-assets-changer)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
