Here we are going to see how to cancel stripe subscription in laravel application. We will talk about example of cancel stripe stripe subscription in laravel app. This tutorial will give you simply cancelling the subscription on Stripe using laravel.

 Given below is the simple and easy way to cancel stripe subscription in laravel. 

 See the solution below:

$stripe = new \Stripe\StripeClient('STRIPE_SECRET');

$response = $stripe->subscriptions->cancel(
                "subscription_id",
                ['prorate' => 'true']
            );



I hope this example helps you.