I am creating various Laravel packages, each with their own Service Provider.
A lot of them will need to a bind a Controller from another package I made, but call it with unique parameters.
The issue I'm getting is that, even with the bind in the boot method, App B is binding the controller with the bind from App A's Service Provider.
Is there a way to segregate the binds, so App A binds the controller with it's parameters, and App B binds it with it's own parameters?