Trouble in traslation: pass query parameters
i have this problem (frontend website, so laravel problem)
- multilanguage website
- custom plugin with some data
- english url /staff?member=john
- italian url /personale?member=john
when i change the language with a language switcher, i go to /locale/it or /locale/en
this route calls a controller that change the whole app language
and then redirect to the choosen language version of the current page
but after the redirect, it looses the url parameters and cause 'member not found'
how do i pass this parameter to the page after the language change?
i've tryed all the possible solutions, also storing the parameter in the session
but the results is always the same, the /locale/en get the parameter so i have /locale/en?member=john
but the final page /staff remain without parameters...
0 Replies