diff --git a/app/Helpers/helpers.php b/app/Helpers/helpers.php index 744d960..9e22cf1 100644 --- a/app/Helpers/helpers.php +++ b/app/Helpers/helpers.php @@ -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 +} diff --git a/app/Repos/Payment/OnlinePaymentRepo.php b/app/Repos/Payment/OnlinePaymentRepo.php index 4afe329..8f5bfda 100644 --- a/app/Repos/Payment/OnlinePaymentRepo.php +++ b/app/Repos/Payment/OnlinePaymentRepo.php @@ -205,7 +205,7 @@ class OnlinePaymentRepo 'title' => $payment_status ? __('Payment is successful') : __('Payment has failed'), 'pnr' => $paymentHistory->orderNumber, 'branch_name' => $bank_branch->name, - 'price_amount' => $paymentHistory->amount, + 'price_amount' => convertToOriginalFormat($paymentHistory->amount) . ' TMT', 'return_url' => url('/work-place/resources/nova-visa-master-payment-orders/' . $resource->visa_master_payment_order_id), ]; }