如何在 Stripe Laravel Cashier / Vue App 中更新现有卡的账单明细
How to update billing details for an existing card in Stripe Laravel Cashier / Vue App
我目前正在使用 Laravel 收银台。我已经有了创建新卡、删除它或将其设置为默认支付方式的端点,但我无法在文档中获取更新信用卡信息的用途。
我在stripe后端文档中得到了这个方法。
https://stripe.com/docs/api/payment_methods/update
而且我在 stripe js 的文档中没有得到任何类似的东西。
https://stripe.com/docs/js
等待您的答复,非常感谢。
更新:
我解决问题如下
Every payment method has a method called asStripePaymentMethod
to access the underlying Stripe object.
Code implementation
数据来自前面的一个表单,数据的结构在stripe官方文档中有展示。
通过付款方式id,我可以访问Laravel收银台库上的付款方式对象,并通过ORM,我可以保存数据。
Laravel版本:7.X
Laravel出纳版本:12.2.0
我目前正在使用 Laravel 收银台。我已经有了创建新卡、删除它或将其设置为默认支付方式的端点,但我无法在文档中获取更新信用卡信息的用途。
我在stripe后端文档中得到了这个方法。 https://stripe.com/docs/api/payment_methods/update
而且我在 stripe js 的文档中没有得到任何类似的东西。 https://stripe.com/docs/js
等待您的答复,非常感谢。
更新:
我解决问题如下
Every payment method has a method called
asStripePaymentMethod
to access the underlying Stripe object.
Code implementation
数据来自前面的一个表单,数据的结构在stripe官方文档中有展示。
通过付款方式id,我可以访问Laravel收银台库上的付款方式对象,并通过ORM,我可以保存数据。
Laravel版本:7.X
Laravel出纳版本:12.2.0