So I've blown my mind today, I'm working with the Stripe API which you provided a redirect_url, i've set that url to a GET route which should be all good and always worked, but now, I am ending up at some complete different page, and every time its a different page, like, I never ever defined that page anywhere, but I end up magically at that page, sometimes I do end up at the correct page but with a to many redirects error. But like, every time I click "confirm payment" its a complete guess on which route I am ending up.
I've just defined my route like normally: Route::get('/complete/{product:id}/ideal', [Site\Store\CompletePurchaseController::class, 'ideal']);
and my controller is actually completely empty.
So my question here is, how can I debugg this and how can it happen?
Is there some command which I can run to see the live redirects / get requests?