@extends('adminlte::page') @section('title', 'Almacen Productos') @section('plugins.Datatables', true) @section('content_header')

Almacen

@stop @section('content')

Stock Productos

@foreach ($stock as $item) @endforeach
# Fecha Registro Tipo Cantidad Aves Peso Neto Accion
{{ $item->id }} {{ \Carbon\Carbon::parse($item->fecha)->format('d/m/Y') }} {{ $item->tipo_pollo->descripcion }} {{ $item->cantidad }} {{ $item->peso_neto }} @if (\Carbon\Carbon::parse($item->fecha)->format('Y-m-d') == \Carbon\Carbon::now()->format('Y-m-d')) @endif



CANTIDAD DE AVES:

PESO TOTAL NETO:

POLLO PRESA (Macho):

POLLO BRASA (Hembra):

@stop @section('css') @stop @section('js') @stop