You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SetLocale now strips {locale} from the matched route's parameter bag after resolving the locale. Laravel passes bound route parameters to controller methods positionally; leaving {locale} in the bag meant a controller like index($country = null) would receive 'de' (the locale) instead of null on /de/users. The locale is still available via App::getLocale() and URL::defaults(). Behaviour change: anyone who declared $locale as the first controller argument as a workaround will now receive the actual first URI parameter - drop the $locale argument.