I have angular as frontend. From there I'm getting customer cards details and creating a token
const { token, error } = await stripe.createToken(this.card, options);
I have Laravel as Backend
I need to save the customer card details in stripe and need to save the reponse details like last 4 digits. It should be feasible to save the multiple cards for the customer.
Note:Initially only the card details need to saved and payment happens later.
I have gone through the documents,but I didn't understand how to use the token that I get front frontend to save the customer card details.
Hoping for the solutions Thanks.