code == "JPY") return $amount; return $amount / pow(10, $precision); } public function convertToStripeAmount($amount, $precision, $currency) { if($currency->code == "JPY") return $amount; return round(($amount * pow(10, $precision)),0); } }