First time user of Laravel Cashier (version 11 and Laravel v6.x). There are two tables provided part of the standard migration of Cashier; subscriptions
and subscription_items
.
I just wanted to understand clearly what is the purpose of the subscription_items
table. I understand that the subscriptions
table stores the subscription details we created using the Cashier API. However I noticed that the subscription_items
table stores pretty identical records but with lesser detail.
Can anyone explain?
To give some context, the subscription plans in my app is very simple. Basically between Free and Paid plan of $10/month with 14-day free trial.