@extends('adminlte::page') @section('title', 'Reporte Final del día') @section('plugins.Datatables', true) @section('content_header')

Reporte Final

@stop @section('content')
Datos Final del día

Ingreso de Productos
@foreach ($dataIngresos as $dato) @endforeach
# Tipo de Ingreso Fecha de Ingreso Peso Bruto Peso Tara Peso Neto Cantidad de Pollos
- {{ $dato->tipo_ingreso == 1 ? 'CAMION' : 'STOCK' }} {{ $dato->fecha_ingreso }} {{ $dato->peso_bruto }} {{ $dato->peso_tara }} {{ $dato->peso_neto }} {{ $dato->detalle_sum_cantidad_pollos }}
TOTAL DISPONIBLE 0 0 0 0
Despacho de Productos
Tipo de Ingreso Cantidad Pollos Peso Neto
CAMION {{ $totales['CAMION']['cantidad_pollos'] }} {{ $totales['CAMION']['peso_neto'] }}
STOCK {{ $totales['STOCK']['cantidad_pollos'] }} {{ $totales['STOCK']['peso_neto'] }}
TOTAL DESPACHOS
@stop @section('js') @endsection