For a 403 error with webhooks, you have to check your existing middlewares they are intercepting that webhook request and causing the 403. Simply add this inside the handle in middleware:
if ($request->is('stripe/*')) {
return $next($request);
}
You're good to go....