@SNAPEY - First I was also referring to https://laracasts.com/discuss/channels/laravel/return-view-with-query
If OP is using session, and needs to redirect with those parameters, that's how to do it.
Second, it was not ramblings. Even if I misunderstood something in question, that is still the way session, query string, redirect, and a route would work. So the post could still help someone.
The question was:
How to redirect to a route and include a parameter as GET parameter into this route?
I answered, YOU DO NOT NEED A GET PARAMETER IN A ROUTE. It's automatically passed.
@snapey surely you should know that a route does not need a get parameter or post parameters, they are already taken care of.
Now what else.
include a parameter as GET parameter into this route?
You don't. GET parameters are query string, others they are just passed parameters.
param1 /param2/param3 is not query string.
Besides, instead of cutting me down, you could have offered a solution.
What I can't imagine, there is only so many ways to deal with query string. It's just automatic, there when you use it. Almost no thought involved its part of http request.
Instead of working together to assist OP, now OP might be confused. Even if I was totally wrong, it would have been better if you gave a reply, they selected yours and moved on. We are suppose to be helping, which is what I was trying to do.
I just thought that OP was thinking that a query string has to be in a route, but it don't.
I have seen other question from OP, and happen to know that they normally use regular route parameters.
So please let's not argue, let's help.
@jaheller I am sorry if I misunderstood anything in your post.