Well, I found out my whole problem doesn't exist, can't reproduce it anymore. The Controller was consistently returning the wrong value.
For what it's worth, after playing with this a bit I finally found out what I missed. My route with a parameter is basically registered as {group param}/{route param}, so I just had to get a secong argument from my controller method et voilà !
public function dispatch ( $lang, $any = null )
{
dd($any);
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community