wuwx/filament-currency-field is a Laravel package for filament currency field..
It currently has 0 GitHub stars and 93 downloads on Packagist (latest version v3.0.0).
Install it with composer require wuwx/filament-currency-field.
Discover more Laravel packages by wuwx
or browse all Laravel packages to compare alternatives.
Last updated
A Currency select field for Laravel Filament.
composer require wuwx/filament-currency-field:"^3.0"
Add to your Filament resource:
use Wuwx\FilamentCurrencyField\Forms\Components\CurrencySelect;
public static function form(Form $form): Form
{
return $form
->schema([
// ...
CurrencySelect::make('currency'),
// ...
]);
}