#faroukHz
1 messages · Page 1 of 1 (latest)
Hi there, so you are using the same Stripe account secret key in both of your laravel projects?
OK, then it's expected because both laravel projects are using the same secret key from the same account
If you want to separate the webhook event handling, you should create another Stripe account for the 2nd laveral project
i have one stripe account and two webhook each webhook is linked to a project
how can separate webhooks
keep in mind that both webhooks have commun events such as invoice.paid
When an event occurs in your Stripe account, both webhook endpoints will get notified if they all listen to that event.
So my advice is to create two separate Stripe accounts for your two projects respectively.
thank you very much for your help