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

Detalle de Ajustes

@stop @section('content')
@foreach ($ajustes as $ajuste) @endforeach
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 }}
@stop @section('css') @stop @section('js') @stop