#Mathias_Aviloo
1 messages · Page 1 of 1 (latest)
When you created this PaymentIntent you didn't set automatic_payment_methods
https://dashboard.stripe.com/test/logs/req_XdzigmxPcMH5uk
$paymentIntent = \Stripe\PaymentIntent::create([
'amount' => \Input::get("amount") * 100,
'currency' => strtolower(\Input::get('currency')),
'automatic_payment_methods' => [
'enabled' => true,
]
]);
but this is de code I am using