PATH:
home
/
cardxfeb
/
public_html
/
vendor
/
gerardojbaez
/
money
/
src
/
Editing: helpers.php
<?php if (! function_exists('moneyFormat')) { /** * Format number to a particular currency. * * @param float Amount to format * @param string Currency * @return string */ function moneyFormat($amount, $currency) { $money = new Gerardojbaez\Money\Money($amount, $currency); return $money->format(); } }
SAVE
CANCEL