@extends('adminlte::page') @section('title', 'Estadísticas de Despachos') @section('content_header')
DESPACHOS REALIZADOS
@if($cambioDespachos > 0) +{{ number_format($cambioDespachos, 1) }}% @elseif($cambioDespachos < 0) {{ number_format($cambioDespachos, 1) }}% @else 0% @endif vs mes anteriorPOLLOS DESPACHADOS
@if($cambioPollos > 0) +{{ number_format($cambioPollos, 1) }}% @elseif($cambioPollos < 0) {{ number_format($cambioPollos, 1) }}% @else 0% @endif vs mes anteriorKILOGRAMOS TOTALES
Peso neto despachado| # | Producto | Unidades | Peso Total (kg) | % del Total |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $producto->descripcion }} | {{ number_format($producto->total_unidades) }} | {{ number_format($producto->total_peso, 2) }} | {{ $totalPollos > 0 ? number_format(($producto->total_unidades / $totalPollos) * 100, 1) : 0 }}% |
| No hay datos disponibles | ||||