This commit is contained in:
2024-11-23 12:08:28 +05:00
parent b9348f3343
commit 8c01ebbbd9
2 changed files with 7 additions and 1 deletions

View File

@@ -201,3 +201,9 @@ function localeAppUrl(): string
{
return config('app.locale_app.url');
}
function convertToOriginalFormat($apiPrice) {
// Convert to float and divide by 100
$originalPrice = intval($apiPrice) / 100;
return number_format($originalPrice, 2, '.', ''); // Format with 2 decimal places
}