I want to create a plan from my application on stripe. The scenario is that users are charged with different prices as recurring payments. So, that is why I want to create plan for each user.
I am using laravel 5 and using "laravel/cashier": "~5.0"
I want to create a plan from my application on stripe. The scenario is that users are charged with different prices as recurring payments. So, that is why I want to create plan for each user.
I am using laravel 5 and using "laravel/cashier": "~5.0"
On
For latest cashier and stripe-php versions few thing need to be changed.
My cashier version is 7.0 ("laravel/cashier": "~7.0") and it automatically installs stripe-php 5. But some parameters has changed from stripe api. So this code will be working,
\Stripe\Stripe::setApiKey("sk_test_your_key");
\Stripe\Plan::create(array(
"amount" => 5000,
"interval" => "month",
"product" => array(
"name" => "Bronze standard"
),
"currency" => "eur",
"id" => "bronze-standard"
));
And you can read more in PHP section of stripe api docs... (https://stripe.com/docs/api/php#create_plan)
laravel/cashier just doesn't have this functionality baked in. You aren't out of luck though as it is easy to just use Stripe's API which should be downloaded as a dependency in your vendor folder. If not you can just download it with composer.
You can use it with
You can read more here - https://stripe.com/docs/api#create_plan