I've a webhook event listener StripeEventListener (which i followed from the doc) for listening Cashier stripe events.
I've wrote the code for each event i needed there (apart from the framework default).
so, there is one event named customer.subscription.created which requires the framework default code to be run first.
Because, i need to fetch $user->subscription() for implementing one logic. But, this subscription is only created on this framework core codes. But sadly, this code (framework WebhookController events) will only get invoked after running the codes in StripeEventListener.
Is there any method i can use to trigger the framework default events first?