@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
{{ __('SALIDAS DE LAS CUENTAS REGISTRADAS') }}
@can('edit cuenta') @endcan

@can('edit cuenta') @endcan @if (count($salidascuentas) > 0) @foreach ($salidascuentas as $salidacuenta) @can('edit cuenta') @endcan @endforeach @else @endif
{{ __('ID') }} {{ __('FECHA') }} {{ __('TIPO') }} {{ __('TIPO COMPROBANTE') }} {{ __('NRO COMP.') }} {{ __('CUENTA') }} {{ __('MOTIVO') }} {{ __('DESCRIPCIÓN') }} {{ __('NOMBRE BENEFICIARIO') }} {{ __('RESPONSABLE') }} {{ __('MONTO') }} {{ __('ACCIÓN') }}
{{ $salidacuenta->id }} @if ($salidacuenta->fecha) {{ $salidacuenta->fecha->format('d/m/Y') }} @endif {{ strtoupper('egreso') }} @if ($salidacuenta->reposicioncaja) {{ strtoupper('reposicion') }} @endif @if ($salidacuenta->liquidacion) {{ strtoupper('liquidación') }} @endif @if ($salidacuenta->adelanto) {{ strtoupper('adelanto') }} @endif @if ($salidacuenta->tipocomprobante) {{ $salidacuenta->tipocomprobante->nombre }} @else - @endif @if ($salidacuenta->comprobante_correlativo) {{ $salidacuenta->comprobante_correlativo }} @else - @endif @if ($salidacuenta->cuenta) {{ $salidacuenta->cuenta->nombre }} @else - @endif @if ($salidacuenta->motivo) {{ $salidacuenta->motivo->nombre }} @else - @endif @if ($salidacuenta->descripcion) {{ $salidacuenta->descripcion }} @else - @endif @if ($salidacuenta->beneficiario) @php $parts = explode(' ', $salidacuenta->beneficiario->nombre); @endphp {{ $parts[0] }} {{ isset($parts[2]) ? $parts[2] : '' }} @else - @endif @if ($salidacuenta->creador) @php $parts = explode(' ', $salidacuenta->creador->name); @endphp {{ $parts[0] }} {{ isset($parts[2]) ? $parts[2] : '' }} @else - @endif @php $coin_simbol = $salidacuenta->cuenta->tipomoneda->nombre == 'DOLARES' ? '$' : 'S/.'; @endphp

{{ $coin_simbol }}

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

@if ( $salidacuenta->reposicioncaja || $salidacuenta->adelanto || $salidacuenta->liquidacion || $salidacuenta->ingreso->isNotEmpty()) @else @include('tesoreria.salidascuentas.modal.edit')
@csrf @method('DELETE')
@endif
{{ __('No hay datos disponibles') }}
{{ $salidascuentas->links('pagination::bootstrap-4') }}
Mostrando del {{ $salidascuentas->firstItem() }} al {{ $salidascuentas->lastItem() }} de {{ $salidascuentas->total() }} registros
@include('tesoreria.salidascuentas.modal.create') @include('tesoreria.salidascuentas.modal.depositar') @include('tesoreria.salidascuentas.modal.cambiardolares') @include('tesoreria.salidascuentas.modal.export') @stop @section('js') @stop