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

{{ __('INGRESOS EN LAS CUENTAS REGISTRADOS') }}

@if (count($ingresoscuentas) > 0) @foreach ($ingresoscuentas as $ingresocuenta) @endforeach @else @endif
{{ __('ID') }} {{ __('MONTO') }} {{ __('CUENTA') }} {{ __('MOTIVO') }} {{ __('DESCRIPCIÓN') }} {{ __('ACCIÓN') }}
{{ $ingresocuenta->id }} {{ $ingresocuenta->monto }} @if ($ingresocuenta->cuenta) {{ $ingresocuenta->cuenta->nombre }} @endif @if ($ingresocuenta->motivo) {{ $ingresocuenta->motivo->nombre }} @endif @if ($ingresocuenta->descripcion) {{ $ingresocuenta->descripcion }} @else - @endif
{{ __('No hay datos disponibles') }}
{{ $ingresoscuentas->links('pagination::bootstrap-4') }}
Mostrando del {{ $ingresoscuentas->firstItem() }} al {{ $ingresoscuentas->lastItem() }} de {{ $ingresoscuentas->total() }} registros
@include('tesoreria.ingresoscuentas.modal.create') @include('tesoreria.ingresoscuentas.modal.export') @stop @section('js') @stop