please try the below Has Many Through relation and post the result
class Category extends Model
{
public function products()
{
return $this->hasManyThrough(
'App\Product', 'App\Category',
'parent_id', 'catergory_id', 'id'
);
}
}
Then you can use $category->products; to find your products