Eslam Zedan
Published in : 2022-03-02
Hello,
I have a stripe account and set in the dashboard my taxes to be handled that anyone pay inside Canada will take taxes but anyone who pays outside Canada will not take taxes.
in the API I send the amount and description only
Stripe\Stripe::setApiKey(env('STRIPE_SECRET'));Stripe\Charge::create(["amount" => $price * 100,"currency" => "cad","source" => $request->stripeToken,"description" => $MyDescription]);
Now how I can tell the stripe that payment going from where?
any help?
Thanks
There is no comments yet
Join our community and get the chance to solve your code issues & share your opinion with us
Sign up Now