Check if Player tag enters a collider on child object?

For design reasons I have put my trigger collider (capsule collider) on the child object.
I need to check if the player collides with it, is this possible or do I need to rethink my design?

I used tags to detect collision on my characters with my player. Tag your main player as “Player” or whatever you want then check it’s collision using OnTriggerEnter. I did my player collision checks on a separate child object in my project as well. It’s working quite well for me. You can use the same method to grab the tag of the object hitting your trigger with OnTriggerStay and OnTriggerExit as well.

I made a trigger collider on a child object on my NPC that walks around and when my Player character gets too close, the NPC reacts.

    void OnTriggerEnter(Collider other)
    {

        if (other.gameObject.tag == "Player")
        {
                //do stuff or react
        }
    }