fomvasss/laravel-currency

1.3.0 2020-03-02 21:09 UTC

This package is auto-updated.

Last update: 2024-08-29 05:24:45 UTC


README

License Build Status Latest Stable Version Total Downloads Quality Score

在您的Laravel应用程序中管理和使用货币

安装

从命令行运行

composer require fomvasss/laravel-currency

发布

php artisan vendor:publish --provider="Fomvasss\Currency\ServiceProvider"

使用

使用门面 \Fomvasss\Currency\Facades\Currency

Currency::getActiveCurrencies();
Currency::issetCurrency('USD');
Currency::getCurrency('RUB');
Currency::format(120, 'RUB');
Currency::convert(10.00, 'USD', 'UAH', false);
Currency::format(123, 'RUB');

链接