收银台 Stripe 添加了对管理客户税号的支持
发布于 作者: Paul Redmond
收银台 Stripe v12.13 附带了一些有用的新方法,用于管理 Stripe 客户的客户税号
最后,收银台 Stripe v12.13.0 附带了一些方便的新方法,用于管理 Stripe 客户的税号。
— Dries Vints (@driesvints) 2021 年 4 月 27 日
以下是 PR:https://t.co/CmTC7TMX8T#Laravel #Stripe pic.twitter.com/kOZelm5Gn2
这些方法对于将税号信息存储在 Stripe 中,与 Stripe 中找到的其他用户帐户信息并列。以下是 拉取请求 #1137 中代码示例的文本版本,您可以开始在收银台 Stripe 中使用这些方法来管理税号
// Return all of the customer's TaxIDs in a collection instance...$user->taxIds(); // Retrieve a specific TaxID from the customer...$user->findTaxId('txi_IzcmyhZukd4oKD'); // Create a new TaxID for the customer...$user->createTaxId($type, $value); // Delete a TaxID from the customer...$user->deleteTaxId('txi_IzcmyhZukd4oKD');
要开始使用收银台 Stripe,请查看 Laravel 计费文档。Stripe API 文档关于 客户税号 是另一个有用的资源,如果您想了解有关收银台用来管理客户数据的 API 的更多信息。
v12.13.0
添加了
- 添加用于管理税号的方法 (#1137)
修复了
- 修复收据注释 (#1131)