News

Cashier Stripe Adds Support for Managing Customer Tax IDs

Published
Cashier Stripe Adds Support for Managing Customer Tax IDs image

Cashier Stripe v12.13 ships with some helpful new methods for managing customer Tax ID's for stripe customers:

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)
Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
Building EasyReply: How We Used Laravel to Unify Customer Support image

Building EasyReply: How We Used Laravel to Unify Customer Support

Read article
PostgreSQL Monitoring and Schema Linting for Laravel with Vacuum image

PostgreSQL Monitoring and Schema Linting for Laravel with Vacuum

Read article
PayZephyr: One Payment API for Stripe, Paystack, and PayPal image

PayZephyr: One Payment API for Stripe, Paystack, and PayPal

Read article
Bifrost Turns One With AI Builds and New Workflows image

Bifrost Turns One With AI Builds and New Workflows

Read article
Preview Blade Templates in macOS Finder with Quick Blade image

Preview Blade Templates in macOS Finder with Quick Blade

Read article
Artisan Debugging Commands in Laravel Telescope 5.24.0 image

Artisan Debugging Commands in Laravel Telescope 5.24.0

Read article