Is there a possibility to create none USD price plans? It seems we can do nothing with enabling/disabling /currencies items because they do not affect subscription plans.
How can I force all plans to be made into EUR instead of USD?
1 Answers
Best Answer
Hello Stefan,
Plans are made according to the admin currency. check our documentation for currency configuration
https://www.laraship.com/docs/laraship/payment-modules/currency-configuration/
public function getCurrencyAttribute()
{
$currency = \Payments::admin_currency_code();
return $currency;
}
Ah great, thanks!
Please login or Register to submit your answer