@extends('adminlte::page')
@section('title', 'Reporte Final del día')
@section('plugins.Datatables', true)
@section('content_header')
Reporte Final
@stop
@section('content')
| # |
Tipo de Ingreso |
Fecha de Ingreso |
Peso Bruto |
Peso Tara |
Peso Neto |
Cantidad de Pollos |
@foreach ($dataIngresos as $dato)
| - |
{{ $dato->tipo_ingreso == 1 ? 'CAMION' : 'STOCK' }} |
{{ $dato->fecha_ingreso }} |
{{ $dato->peso_bruto }} |
{{ $dato->peso_tara }} |
{{ $dato->peso_neto }} |
{{ $dato->detalle_sum_cantidad_pollos }} |
@endforeach
| TOTAL DISPONIBLE |
0 |
0 |
0 |
0 |
| 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