@extends('adminlte::page') @section('title', 'Inventario') @section('plugins.Datatables', true) @section('content_header')
Fecha | Usuario | Tipo de Ingreso | Tipo de Ajuste | Tipo de Pollo | Cantidad | Peso | Descripción |
---|---|---|---|---|---|---|---|
{{ $ajuste->created_at->format('d/m/Y') }} | {{ $ajuste->user->name }} | {{ $ajuste->tipo_ingreso_id == 1 ? 'CAMION' : 'STOCK' }} | {!! $ajuste->tipo_ajuste == 1 ? ' Ingreso' : ' Salida' !!} | {{ $ajuste->tipoPollo->descripcion }} | {{ $ajuste->cantidad_pollos }} | {{ $ajuste->peso_neto }} | {{ $ajuste->descripcion }} |