@extends('layouts.app') @section('content')
{{ __('TODAS LAS OPERACIONES REGISTRADAS') }}
@if (count($ingresos) > 0) @foreach ($ingresos as $ingreso) @endforeach @else @endif
{{ __('ID') }} {{ __('CODIGO') }} {{ __('DNI / RUC') }} {{ __('DATOS') }} {{ __('FECHA') }} {{ __('REF.LOTE ') }} {{ __('PESO TOTAL') }} {{ __('CREADO POR') }} {{ __('ACCION') }}
{{ $ingreso->id }} {{ $ingreso->codigo }} {{ $ingreso->identificador }} {{ $ingreso->nom_iden }} {{ $ingreso->fecha_ingreso }} {{ $ingreso->ref_lote }} {{ $ingreso->peso_total }} {{ $ingreso->user ? $ingreso->user->name : 'Desconocido' }} {{ __('VER') }} {{ __('EDITAR') }}
@csrf @method('DELETE')
{{ __('IMPRIMIR') }}
{{ __('No hay datos disponibles') }}
@push('js') @endpush @endsection