#jackle
1 messages · Page 1 of 1 (latest)
Yes, Pricing Tables use Checkout Sessions which means that they will use the payment methods that you have configured in your dashboard https://dashboard.stripe.com/settings/connect/payment_methods
Previously we use the Checkout with Laravel Cashier with this options : [ 'payment_method_types' => ['card', 'sepa_debit'], 'billing_address_collection' => 'required', 'shipping_address_collection' => [ 'allowed_countries' => ['FR'] ], 'locale' => 'fr', 'success_url' => route('billing.checkout-success').'?session_id={CHECKOUT_SESSION_ID}', 'cancel_url' => route('billing.index'), ];
everything was ok
Yep, from what I saw the pricing table doesn't take specific arguments for payment method types like that so I think you may need to specify it at the account level. The server is busy but I can double check in a bit