{{ optional($company)->name ?? 'Reporte' }}
Ventas por laboratorio | Del {{ $from }} al {{ $to }} | incluye boletas, facturas y notas de venta
Laboratorio
Cant.
Total
% part.
@forelse($rows as $row)
{{ $row->laboratorio }}
{{ number_format($row->cantidad, 2) }}
{{ number_format($row->total, 2) }}
{{ $row->porcentaje }}%
@empty
Sin ventas en el perĂodo.
@endforelse
@if(count($rows))
TOTAL
{{ number_format($total, 2) }}
100%
@endif