awkaw/laravel-currency
Composer 安装命令:
composer require awkaw/laravel-currency
包简介
Handles currency for Laravel 5.8
README 文档
README
Handles currency for Laravel 5.8.
Installation
To get the latest version of Currency simply require it in your composer.json file.
"roaderchik/currency": "dev-master"
composer require "roaderchik/currency"
You'll then need to run composer install to download it and have the autoloader updated.
Once Currency is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.
'providers' => [
roaderchik\Currency\CurrencyServiceProvider::class,
]
Currency also ships with a facade which provides the static syntax for creating collections. You can register the facade in the aliases key of your app/config/app.php file.
'aliases' => [
'Currency' => roaderchik\Currency\Facades\Currency::class,
]
Create configuration file and migration table using artisan
$ php artisan vendor:publish
Artisan Commands
Updating Exchange
By default exchange rates are updated from Finance Yahoo.com.
php artisan currency:update
To update from OpenExchangeRates.org
php artisan currency:update --openexchangerates
Note: An API key is needed to use OpenExchangeRates.org. Add yours to the config file.
To update from The Central Bank of the Russian Federation (www.cbr.ru)
php artisan currency:update --cbr
To update from National Bank of the Republic of Belarus (www.nbrb.by)
php artisan currency:update --nbrb
Cleanup
Used to clean the Laravel cached exchanged rates and refresh it from the database. Note that cached exchanged rates are cleared after they are updated using one of the command above.
php artisan currency:cleanup
Convert
// for example convert USD to EUR
echo /Currency::convert(100, 'USD', 'EUR');
- The first parameter is the amount.
- The second parameter is the ISO 4217 From currency code.
- The third parameter is the ISO 4217 To currency code.
Rendering
Using the Blade helper
@currency(12.00, 'USD')
- The first parameter is the amount.
- optional The second parameter is the ISO 4217 currency code. If not set it will use the default set in the config file.
echo /Currency::format(12.00, 'USD');
For easy output of rounded values:
echo /Currency::rounded(12.80); // Will output $12
// All the parameters
echo /Currency::rounded(12.80, 0, 'USD');
Change Log
awkaw/laravel-currency 适用场景与选型建议
awkaw/laravel-currency 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 155 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 04 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「money」 「currency」 「laravel」 「exchange rate」 「laravel5」 「RUB」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 awkaw/laravel-currency 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 awkaw/laravel-currency 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 awkaw/laravel-currency 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Beyonic PHP Library
Fixer.io data provider for Peso
TCMB Currenct Converter
Immutable PHP currency converter that's data-agnostic.
The Payum Yandex Money gateway
Alfabank REST API integration
统计信息
- 总下载量: 155
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-2-Clause
- 更新时间: 2020-04-09