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
I got the same issue when trying to use the group with prefix => "{locale}". Then I have a URL like /messages/1 where 1 is the {id}, but {locale} will be parsed in instead of id, so it is like I would call /messages/en (for instance), which really doesn't make any kind of sense.
I have a doubt.
imagine instead of locale, lets consider 'id'. Id is unique identification for users in users table, model.
how should i use ->where('id', 'all id in model user');
I have a controller route defined no group and it works fine.
Here is the method signature
When I add this Route Group with a filter the $id variable does not get passed in anymore.
The route group with the where is working working fine. It just eats the $id variable and doesn't pass it into the getShow($id) method anymore.
The text was updated successfully, but these errors were encountered: