What I want is get only {id} in my controller. and not {prefix}
i.e
// I want id to have the id from route and not the prefix
public function show($id){}
// But actually this is what is happening
public function show($prefix, $id ){}
@SachinAgarwal If you’re doing explicit route–model binding for the ID, then you could unset the prefix parameter there, but I recommend against it as it could have a knock-on affect with the rest of your routing.