Is it possible to add a parameter to the url from the route Controller?
For example, my URL is: myshop.com/order-finished
And his method controller is:
getOrderFinished() {
// I want add this param
myshop.com/order-finished?order_number=W00034335
}
I want the final URL to be: myshop.com/order-finished?order_number=W00034335, but I must add the parameter order_number from the controller method.
EDIT: no redirections, please.