,How to rotate bow along with camera

Imagine a bow that is upright with the top next to your right shoulder. When the user rotates left or right the bow should rotate with the player and maintain the original position. How should I do this? Thanks.,Imagine a bow that is upright on your right when the user rotates the player to the left the bow should follow and same on the right. How should I do this?
Thanks.

If you parent the bow under the player, it will automatically rotate with player.
if you cannot do this, you can create some empty helper game object under the player (parent it under player), then set the rotation of the parented empty object based on the rotation of the bow on init.
In update set the rotation of the bow based on the rotation of the empty game object.