サブスクリプション対応決済サービス Stripe と Laravel からサブスクリプションを操作する Laravel Cashier についてのメモ書き

Next.js で Stripe

stripe のインストール

npm i stripe @stripe/stripe-js @stripe/react-stripe-js
npm i -D @types/stripe

types/stripe.ts

export interface PaymentIntentRequest {
  amount: number;
  contentId: string;
}

export interface PaymentIntentResponse {
  clientSecret: string;
}
No.2564
10/24 17:35

edit