@extends('adminlte::page') @section('title', 'Estadísticas de Despachos') @section('content_header')

Estadísticas de Despachos

@stop @section('content') {{-- Filtros --}}

Filtros

{{-- Cards de Resumen con Tendencias --}}

{{ number_format($totalDespachos) }}

DESPACHOS REALIZADOS

@if($cambioDespachos > 0) +{{ number_format($cambioDespachos, 1) }}% @elseif($cambioDespachos < 0) {{ number_format($cambioDespachos, 1) }}% @else 0% @endif vs mes anterior

{{ number_format($totalPollos) }}

POLLOS DESPACHADOS

@if($cambioPollos > 0) +{{ number_format($cambioPollos, 1) }}% @elseif($cambioPollos < 0) {{ number_format($cambioPollos, 1) }}% @else 0% @endif vs mes anterior

{{ number_format($pesoTotal, 2) }}

KILOGRAMOS TOTALES

Peso neto despachado
{{-- Gráficos --}}
{{-- Gráfico de Tendencia --}}

Tendencia de Despachos (Últimos 12 Meses)

{{-- Gráfico Circular --}}

Distribución por Producto

{{-- Tabla Top Productos --}}

Top 5 Productos Más Despachados

@forelse($topProductos as $index => $producto) @empty @endforelse
# 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
@stop @section('css') @stop @section('js') @stop