LaravelPackages.net
Acme Inc.
Toggle sidebar
wuwx/filament-currency-field

Filament currency field.

93
0
v3.0.0
About wuwx/filament-currency-field

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

Filament Currency Field

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'),
            // ...
        ]);
}

Star History Chart