โ˜… Handling Stripe webhooks in a Laravel application

1 ยท Freek Van der Herten ยท Oct. 9, 2017, 8:39 a.m.
In the project I'm currently working on I had to integrate Stripe webhooks. Stripe has great documentation on how to handle webhooks, but it still took a fair amount of time to get the integration just right. My solution for handling webhooks is pretty generic and reusable by others. I decided to extract it to a package called laravel-stripe-webhooks, so nobody has to code this stuff up again. In this blogpost I'd like to share how the package works. Requests will be validated Whenever an event...