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

{{ __('CLIENTES REGISTRADOS') }}

@if (count($clientes) > 0) @foreach ($clientes as $cliente) {{-- --}} @endforeach @else @endif
{{ __('DOCUMENTO') }} {{ __('NOMBRE') }}
{{ strtoupper($cliente->documento) }} {{ strtoupper($cliente->nombre) }}
{{ __('NO HAY DATOS DISPONIBLES') }}
{{ $clientes->links('pagination::bootstrap-4') }}
{{ __('MOSTRANDO DEL') }} {{ $clientes->firstItem() }} {{ __('AL') }} {{ $clientes->lastItem() }} {{ __('DE') }} {{ $clientes->total() }} {{ __('REGISTROS') }}
@include('liquidaciones.clientes.modal.create') @push('js') @endpush @endsection