michaeld555 / filament-money
Money field for filament forms
v1.0.3
2026-03-30 13:50 UTC
Requires
- php: ^8.1 || ^8.2 || ^8.3 || ^8.4
- filament/forms: ^3.0 || ^4.0 || ^5.0
- illuminate/support: ^10.0 || ^11.0 || ^12.0 || ^13.0
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;