예제 #1
0
function convert_value($value)
{
    return Converter::value($value)->to('currency.usd')->format();
}
예제 #2
0
파일: helpers.php 프로젝트: manogi/gfw-qm
function convert_from_cents($value)
{
    return Converter::value($value / 100)->to('currency.eur')->format();
}