kodeas/currency
最新稳定版本:1.0.5
Composer 安装命令:
composer require kodeas/currency
包简介
A simple currency cast for Laravel
关键字:
README 文档
README
A simple currency cast for Laravel
This package is created to eliminate the ambiguity involved in storing and retrieving currencies. Currently, for simplicity the terminology surrounding the package is in US currency, however there is nothing stopping anyone from using this for any other 2 decimal currencies.
Installation
You can install the package via composer:
composer require kodeas/currency
Usage
MyModel extends Model
{
protected $casts = [
'amount' => Kodeas\Currency\Casts\Currency::class
];
}
$currency = Kodeas\Currency\Currency::fromUsd(1); $model = MyModel::create([ 'amount' => $currency //100(cents) in database ]); $model->amount //Currency::class
Initialize
$currency = Kodeas\Currency\Currency::fromUsd(1); $currency = Kodeas\Currency\Currency::fromCents(100);
Methods
echo $currency; // "1.00" $currency->toUsd(); // "1" $currency->toCents(); // "100" $currency->toReadable(); // "1.00" $currency->toReadable('$'); // "$1.00" return response()->json(['currency' => $currency->toUsd()]); // {"currency": "1.00"}
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 2.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-21
