i have the next collection:
It is grouped by zone and fundo and I need to sum all the sup_ha that each fundo contains
$transporFundo = $tansporCollect->groupBy(['zona','fundo']);
        
foreach ($transporFundo as $fundo) {
    $supFundo = $fundo->sum('sup_ha');
    dd($supFundo);
}
that is to say that for example of my collection for zona 1 and fundo 805 I would have to add the sup_ha field of the 364 records that are seen.
I tried to do it but I don't know how to access the field, as seen in my code I tried and it returns 0.
I hope you can help me, thanks
**
UPDATE
** ok, remove the group by, for example show a collection like the following, the original has 700k of records
Illuminate\Support\Collection {#778646 ▼
  #items: array:4 [▼
    0 => array:3 [▼
      "zona" => 1
      "sup_ha" => 20
      "fundo" => 805
    ]
    1 => array:3 [▼
      "zona" => 1
      "sup_ha" => 10
      "fundo" => 805
    ]
    2 => array:3 [▼
      "zona" => 2
      "sup_ha" => 5
      "fundo" => 800
    ]
    3 => array:3 [▼
      "zona" => 2
      "sup_ha" => 10
      "fundo" => 900
    ]
  ]
}
so, I need the sum of the sup_ha of equal fundo, like this:
fundo | sum
805   | 30
800   | 5
900   | 10
And I need the sum of the sup_ha of equal zona, like this:
zona  | sum
1   | 30
2   | 15
Given this, that's why I had made a group by to calculate the sum of the fundo's. so now I don't know whether to think if it was right to do it like this
I hope you have clarified
