I have implemented stripe payment using php. The base currency is Euro. how can i add option to allow the user to pay in another currencies
$charge = \Stripe\Charge::create(array(
"amount" => $amount,
"currency" => "eur",
"source" => $source,
"customer" => "cus_BpES3vz708LAn3"
"description" => $description
));
many thanks