Files
investbrain/app/Support/Helpers.php
T

18 lines
419 B
PHP
Raw Normal View History

2024-08-10 13:30:03 -05:00
<?php
2025-01-28 17:14:49 -06:00
2025-01-28 17:33:54 -06:00
declare(strict_types=1);
2024-08-10 13:40:35 -05:00
// 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);
2024-08-10 13:30:03 -05:00
2024-08-10 13:40:35 -05:00
// return $formatter->formatCurrency((float) $amount, 'USD');
// }
// }