Files
investbrain/app/Support/Helpers.php
T
2025-01-28 17:33:54 -06:00

18 lines
419 B
PHP

<?php
declare(strict_types=1);
// if (!function_exists('formatMoney')) {
// /**
// * Returns a formatted string for currency
// *
// * @param int|float $amount
// *
// * */
// function formatMoney(int|float $amount) {
// $formatter = new NumberFormatter('en_US', NumberFormatter::CURRENCY);
// return $formatter->formatCurrency((float) $amount, 'USD');
// }
// }