@extends('adminlte::page') @section('title', env('APP_NAME') . ' - Inventario') @section('plugins.Datatables', true) @section('content_header')
| Total Pollos: | {{ number_format($inventarios->sum('total_pollos'), 0) }} unidades |
| Total Peso: | {{ number_format($inventarios->sum('total_peso'), 2) }} kg |
| ID | Tipo Ingreso | Presentación | Tipo | Cantidad Pollos | Total Peso | Accion |
|---|---|---|---|---|---|---|
| {{ $inventory->id }} | {{ $inventory->tipo_ingreso_description() }} | {{ $inventory->presentacion_pollo_descripcion }} | {{ $inventory->tipo_pollo_descripcion }} | {{ $inventory->total_pollos }} | {{ $inventory->total_peso }} | @if (($inventory->presentacion_pollo_id == 1 && $inventory->total_pollos > 0) || $inventory->total_peso > 0) @endif |