#tarachand_369
1 messages · Page 1 of 1 (latest)
I want to add subcrjption price Each Additional user
What do you mean by "add subscription price" and "each addional user"? Can you give a concrete example?
You mean a per seat pricing? It's explained here: https://stripe.com/docs/products-prices/pricing-models#per-seat
Yes, check the link above. And you can add two price for your subscription: one for the primary user, and another for each additiona user.
I don't understand sorry.
You mean a per seat pricing? It's explained here: https://stripe.com/docs/products-prices/pricing-models#per-seat I take reference this url . Then after can this is properly work or not for additional user?
I'm sorry I don't understand your question. What exactly is the issue?
okay ma'am second question is : How to pass extra charges in subscription
Recurring charges or one time charges?
$monthly_price = $stripe->prices->create([
'product' => $product->id,
'unit_amount' => $request->monthly_price * 100,
'currency' => 'usd',
'recurring' => ['interval' => 'month'],
]);
$yearly_price = $stripe->prices->create([
'product' => $product->id,
'unit_amount' => $request->yearly_price * 100,
'currency' => 'usd',
'recurring' => ['interval' => 'year'],
]); how to pass charges in this code