wuwx / filament-currency-field
Filament货币字段。
v3.0.0
2023-09-11 15:05 UTC
Requires
- php: ^8.1
- filament/filament: ^3.0-stable
- moneyphp/money: ^4.2
This package is not auto-updated.
Last update: 2024-09-24 18:11:25 UTC
README
用于Laravel Filament的货币选择字段。
安装
composer require wuwx/filament-currency-field:"^3.0"
使用
表单字段
添加到您的Filament资源中
use Wuwx\FilamentCurrencyField\Forms\Components\CurrencySelect; public static function form(Form $form): Form { return $form ->schema([ // ... CurrencySelect::make('currency'), // ... ]); }