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

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article