laravel/cashier-mollie

How to create different pricings for subscriptions based on user country?

Opened this issue · 2 comments

I would like to sell the subscription to US customers for 100 USD and european for 100 EUR.
How is this possible?

Prefering a solution with cashier_plans.php

Creating 2 different plans would be the easiest solution

Something like that will work for you @mleister97

'plans' => [
        'european_plan' => [
            'amount' => [
                'value' => '100.00',
                'currency' => 'EUR',
            ],
            // Rest of the plan config
        ],
       'us_plan' => [
            'amount' => [
                'value' => '100.00',
                'currency' => 'USD',
            ],
            // Rest of the plan config
        ],
    ],