@extends('admin.layout') @push('css') @endpush @section('content')

{{ __('LOTES REGISTRADOS') }}

@if (count($lotes) > 0) @foreach ($lotes as $lote) @endforeach @else @endif
{{ __('ID') }} {{ __('CÓDIGO') }} {{ __('NOMBRE') }} {{ __('ACCIÓN') }}
{{ $lote->id }} {{ $lote->codigo }} {{ $lote->nombre }} {{ __('VER') }}
{{ __('No hay datos disponibles') }}
{{ $lotes->links('pagination::bootstrap-4') }}
Mostrando del {{ $lotes->firstItem() }} al {{ $lotes->lastItem() }} de {{ $lotes->total() }} registros
@include('liquidaciones.lotes.modal.create') @foreach($lotes as $lote) @include('liquidaciones.lotes.modal.show', ['id' => $lote->id]) @endforeach @push('js') @endpush @endsection