michaeld555/filament-money

Money field for filament forms

Maintainers

Package info

github.com/michaeld555/filament-money

pkg:composer/michaeld555/filament-money

Statistics

Installs: 708

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 1

v1.0.3 2026-03-30 13:50 UTC

This package is auto-updated.

Last update: 2026-03-30 13:53:51 UTC


README

Supported Versions

  • Laravel 10, 11, 12 and 13
  • Filament 3, 4 and 5

Installation

Require this package in your composer.json and update composer:

composer require michaeld555/filament-money

Using

To create a money input use:

use Michaeld555\FilamentMoney\MoneyInput;

MoneyInput::make('value')
    ->prefix('R$');

The legacy namespace remains available:

use Michaeld555\SecureShell\MoneyInput;