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

Inventario Productos

@stop @section('content')

Inventario Productos

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



Cantidad de Aves:

Peso Neto Total:

# Pollo Presa (Macho):

# Pollo Brasa (Hembra):

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