Cashier Stripe Adds Support for Managing Customer Tax IDs
Published on by Paul Redmond
Cashier Stripe v12.13 ships with some helpful new methods for managing customer Tax ID's for stripe customers:
And lastly, Cashier Stripe v12.13.0 comes with some handy new methods for managing TaxID's on a Stripe customer.
— Dries Vints (@driesvints) April 27, 2021
Here's the PR: https://t.co/CmTC7TMX8T#Laravel #Stripe pic.twitter.com/kOZelm5Gn2
These methods are useful for storing tax ID information in Stripe alongside other user account information found in Stripe. Here's a text version of the code examples in pull request #1137 that you can start using in Cashier Stripe to manage tax IDs:
// 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');
To get started with Cashier Stripe, check out the Laravel billing documentation. The Stripe API documentation for Customer Tax IDs is another helpful resource if you'd like to learn more about the APIs Cashier uses to manage customer data.
v12.13.0
Added
- Add methods for managing TaxIDs (#1137)
Fixed
- Fix receipt comments (#1131)