@lyndon
Route::post('/stripe/webhook', 'WebhookController@handleWebhook');
use Illuminate\Support\Facades\Log;
class WebhookController extends Controller
{
public function handleWebhook(Request $request)
{
Log::info('Webhook received:', $request->all());
// Your webhook handling logic here
return response()->json(['success' => true]);
}
}
Here check what you get and how you have handle it to store in db. if you still not get any issue. Post here more detail to debug it. let me know your feedback.