laravel / spark-aurelius-mollie

Laravel Spark, Mollie edition
https://spark.laravel.com/docs
28 stars 6 forks source link

Payment Method Configuration #4

Closed gelinger777 closed 4 years ago

gelinger777 commented 4 years ago

image

Seems Card Icon is broken. No Errors in the console. What I did wrong? How can I add also SEPA mandate as an option?

sandervanhooft commented 4 years ago

The card icon shows when a card (mandate) is registered.

That happens when the customer went through Mollie’s checkout.

A SEPA mandate is obtained when the customer uses a SEPA backed payment method, such as iDEAL or BanContact.

gelinger777 commented 4 years ago

I see, so they don't need to add card prior to subscribing. And when I click to subscribe in the php side I get "Plan not found" error. How to solve that?

gelinger777 commented 4 years ago

I guess problem with Plan Not Found is because I need to double-add the plans data in /config/cashier_plans.php?

Also If you could show where I can see some example of per-seat billing for team billing would be so nice...

sandervanhooft commented 4 years ago

I guess problem with Plan Not Found is because I need to double-add the plans data in /config/cashier_plans.php?

Per the installation instructions, you need to configure the plans in /config/cashier_plans.php first. Then configure it in Spark's service provider.

Also If you could show where I can see some example of per-seat billing for team billing would be so nice...

https://spark.laravel.com/docs/10.0/billing#charging-per-seat

gelinger777 commented 4 years ago

So Spark::chargeTeamsPerMember(); will work out of the box, and i would not need to make any preprocessors or watsoever, right? Metered billing confused me a bit...