cartalyst / stripe-laravel

Cartalyst Stripe package integration for Laravel.
BSD 3-Clause "New" or "Revised" License
336 stars 58 forks source link

what is The card unique identifier? is this the Token? How do i get the cardID? #30

Closed JosephMendez closed 7 years ago

JosephMendez commented 7 years ago

what is The card unique identifier? is this the Token? How do i get the cardID?

Retrieves the details of an existing credit card.

$card = $stripe->cards()->find('cus_4EBumIjyaKooft', 'card_4DmaB3muM8SNdZ');

brunogaspar commented 7 years ago

When you create a new card, you can retrieve it's id.

JosephMendez commented 7 years ago

thank you i got it