laravel / cashier-stripe

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.
https://laravel.com/docs/billing
MIT License
2.37k stars 671 forks source link

Get single payment method by id #847

Closed quantumwebco closed 4 years ago

quantumwebco commented 4 years ago

I may be missing something but there doesn't seem to be a function to get a single payment method by id. Only all paymentMethods or defaultPaymentMethod

Is there a way to get an instance of Laravel\Cashier\PaymentMethod by the payment method id?

driesvints commented 4 years ago

You can use findPaymentMethod: https://laravel.com/docs/6.x/billing#retrieving-payment-methods

quantumwebco commented 4 years ago

Oh derp, how did I miss that? Sorry about that!