| Ventas |
${{ number_format($sumatoria_ganancia_array[$mes], 2, ',', '.') }} |
| Gastos |
@if (count($totales_por_moneda_final) == 0)
$0,00
@else
@foreach($totales_por_moneda_final as $moneda => $total)
{{ $moneda }}{{ number_format($total, 2, ',', '.') }}
@if (! $loop->last)
+
@endif
@endforeach
@endif
|
| Saldo {{ $meses[$mes] }} {{ $year }} |
@if (count($totales_por_moneda_final) == 0)
${{ number_format($sumatoria_ganancia_array[$mes], 2, ',', '.') }}
@else
@if (isset($totales_por_moneda_final['$']))
${{ number_format(($sumatoria_ganancia_array[$mes] - $totales_por_moneda_final['$']), 2, ',', '.') }}
@endif
@if (count($totales_por_moneda_final) > 1)
+
@endif
@foreach($totales_por_moneda_final as $moneda => $total)
@if ($moneda != '$')
{{ $moneda }}{{ number_format($total, 2, ',', '.') }}
@if (! $loop->last)
+
@endif
@endif
@endforeach
@endif
|