11 lines
290 B
PHP
11 lines
290 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Number;
|
|
|
|
if (! function_exists('formatCurrency')) {
|
|
function formatCurrency(string $value, ?string $format = 'IDR', ?string $locale = 'id_ID', int $precision = 0): string
|
|
{
|
|
return Number::currency($value, $format, $locale, $precision);
|
|
}
|
|
}
|