function calculateTotal(&$array) {
$total = 0;
foreach ($array as &$arr) {
if (isset($arr['child'])) {
$arr['nominal_hr'] += calculateTotal($arr['child']);
}
$total += $arr['nominal_hr'];
}
return $total;
}
// Call the function on your data array
calculateTotal($data);
// Now you can build your table as before
echo build_laba($data);