wuwx / filament-currency-field
Filament currency field.
Installs: 82
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/wuwx/filament-currency-field
Requires
- php: ^8.1
- filament/filament: ^3.0-stable
- moneyphp/money: ^4.2
This package is not auto-updated.
Last update: 2025-10-07 23:18:31 UTC
README
A Currency select field for Laravel Filament.
Installation
composer require wuwx/filament-currency-field:"^3.0"
Usage
Form Field
Add to your Filament resource:
use Wuwx\FilamentCurrencyField\Forms\Components\CurrencySelect; public static function form(Form $form): Form { return $form ->schema([ // ... CurrencySelect::make('currency'), // ... ]); }