Tabla de facturas por mes

Rango: {{ $fechaInicio->format('d/m/Y') }} al {{ $fechaFin->format('d/m/Y') }}
@foreach($rows as $row) @endforeach
Mes Facturas cantidad Facturas monto Ventas sin factura cantidad Ventas sin factura monto
{{ $row['mes'] }} {{ number_format((int) $row['facturas_cantidad']) }} ${{ number_format((float) $row['facturas_monto'], 2) }} {{ number_format((int) $row['ventas_cantidad']) }} ${{ number_format((float) $row['ventas_monto'], 2) }}
Total {{ number_format((int) $totales['facturas_cantidad']) }} ${{ number_format((float) $totales['facturas_monto'], 2) }} {{ number_format((int) $totales['ventas_cantidad']) }} ${{ number_format((float) $totales['ventas_monto'], 2) }}