How to get total amount from foreach lop in Laravel Controller

Solution:

Try this:

$total = 0;
foreach($forusdvaluetotal as $coins){
    $getprice = $coins['market_price'];
    $valueinusd = $coins['balance']*$getprice;
    $total += $valueinusd;    
}

return $total;