I'm using Laravel's Cashier to handle my subscription plans on Laravel 5.1. Every time I change the user's card with
$user->updateCard($stripeToken);
a new customer is generated on Stripe, with a new card, new id but same e-mail, when in reality it should just update a customer's card. I've looked in the documentation but didn't find what could be wrong. Could someone help?