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

@foreach ($chats as $chat) @php // Determine the correct recipient name $recipient = $chat->user_id === auth()->id() ? $chat->recipient : $chat->user; $lastMessage = $chat->messages->first(); // Get the last message (already fetched in the query) // Determine if the last message is from the logged-in user or the recipient $lastMessageSender = $lastMessage && $lastMessage->user_id === auth()->id() ? 'Tú' : $recipient->name; @endphp @if ($lastMessage && $lastMessage->is_read == false && $lastMessageSender != 'Tú') @endif @endforeach
{{ __('REGISTRO DE INGRESOS EN LAS CUENTAS') }}

@can('edit cuenta') @endcan @if (count($ingresoscuentas) > 0) @foreach ($ingresoscuentas as $ingresocuenta) @can('edit cuenta') @endcan @endforeach @else @endif
{{ __('ID') }} {{ __('FECHA') }} {{ __('TIPO') }} {{ __('TIPO COMPROBANTE') }} {{ __('NRO COMPROBANTE') }} {{ __('CUENTA') }} {{ __('MOTIVO') }} {{ __('DESCRIPCIÓN') }} {{ __('ENTREGA') }} {{ __('MONTO') }} {{ __('ACCIÓN') }}
{{ $ingresocuenta->id }} @if ($ingresocuenta->fecha) {{ $ingresocuenta->fecha->format('d/m/Y') }} @endif INGRESO @if ($ingresocuenta->tipocomprobante) {{ $ingresocuenta->tipocomprobante->nombre }} @else - @endif @if ($ingresocuenta->comprobante_correlativo) {{ $ingresocuenta->comprobante_correlativo }} @else - @endif @if ($ingresocuenta->cuenta) {{ $ingresocuenta->cuenta->nombre }} @endif @if ($ingresocuenta->motivo) {{ $ingresocuenta->motivo->nombre }} @endif @if ($ingresocuenta->descripcion) {{ $ingresocuenta->descripcion }} @else - @endif @if ($ingresocuenta->cliente) @php $parts = explode(' ', $ingresocuenta->cliente->nombre); @endphp {{ $parts[0] }} {{ isset($parts[2]) ? $parts[2] : '' }} @else - @endif @php $coin_simbol = $ingresocuenta->cuenta->tipomoneda->nombre == 'DOLARES' ? '$' : 'S/.'; @endphp

{{ $coin_simbol }}

{{ number_format($ingresocuenta->monto, 2) }}

@csrf @method('DELETE')
{{ __('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') @if (count($ingresoscuentas) > 0) @foreach ($ingresoscuentas as $ingresocuenta) @include('tesoreria.ingresoscuentas.modal.editar') @endforeach @endif @stop @section('js') @stop