@foreach($grupo['filas'] ?? [] as $fila)
| {{ $fila['fecha'] }} |
{{ $fila['documento'] }} |
{{ $fila['folio'] }} |
{{ $fila['movimiento'] }} |
{{ $fila['usuario'] ?? '—' }} |
{{ $fila['entrada'] > 0 ? $fmt($fila['entrada']) : '—' }} |
{{ $fila['salida'] > 0 ? $fmt($fila['salida']) : '—' }} |
{{ $fmt($fila['saldo']) }} |
{{ $fmt($fila['precio_unitario']) }} |
{{ $fmt($fila['precio_total']) }} |
@endforeach
| Subtotales |
{{ $fmt($grupo['subtotales']['entrada'] ?? 0) }} |
{{ $fmt($grupo['subtotales']['salida'] ?? 0) }} |
{{ $fmt($grupo['subtotales']['saldo'] ?? 0) }} |
— |
{{ $fmt($grupo['subtotales']['precio_total'] ?? 0) }} |
| Subtotales producto |
{{ $fmt($grupo['subtotales']['entrada'] ?? 0) }} |
{{ $fmt($grupo['subtotales']['salida'] ?? 0) }} |
{{ $fmt($grupo['subtotales']['saldo'] ?? 0) }} |
— |
{{ $fmt($grupo['subtotales']['precio_total'] ?? 0) }} |