@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
{{ __('ADELANTOS REGISTRADOS') }}
@can('edit cuenta') @endcan

@can('edit cuenta') @endcan @if (count($adelantos) > 0) @foreach ($adelantos as $adelanto) @if ($adelanto->cerrado) @else @endif @can('edit cuenta') @endcan @endforeach @else @endif
{{ __('ID') }} {{ __('SALIDA CUENTA ID') }} {{ __('FECHA') }} {{ __('TIPO') }} {{ __('TIPO COMPROB.') }} {{ __('COMPROB. NRO') }} {{ __('CUENTA') }} {{ __('CÓDIGO CLIENTE') }} {{ __('MOTIVO') }} {{ __('DESCRIPCIÓN') }} {{ __('NOMBRE CLIENTE') }} {{ __('RESPONSABLE') }} {{ __('SIN DETRACCIÓN') }} {{ __('ESTADO') }} {{ __('MONTO') }} {{ __('ACCIÓN') }}
{{ $adelanto->id }} {{ $adelanto->salidacuenta ? $adelanto->salidacuenta->id : '' }} @if ($adelanto->fecha) {{ strtoupper($adelanto->fecha->format('d/m/Y')) }} @endif EGRESO {{ strtoupper('adelanto') }} @if ($adelanto->salidacuenta->tipocomprobante) {{ strtoupper($adelanto->salidacuenta->tipocomprobante->nombre) }} @else - @endif @if ($adelanto->salidacuenta->comprobante_correlativo) {{ strtoupper($adelanto->salidacuenta->comprobante_correlativo) }} @else 001-IN-{{ $adelanto->id }} @endif @if ($adelanto->salidacuenta->cuenta) {{ strtoupper($adelanto->salidacuenta->cuenta->nombre) }} @endif @if ($adelanto->sociedad) {{ strtoupper($adelanto->sociedad->codigo) }} @else - @endif @if ($adelanto->salidacuenta->motivo) {{ strtoupper($adelanto->salidacuenta->motivo->nombre) }} @else - @endif @if ($adelanto->salidacuenta->descripcion) {{ strtoupper($adelanto->salidacuenta->descripcion) }} @else - @endif @if ($adelanto->sociedad) {{ strtoupper($adelanto->sociedad->nombre) }} @else - @endif {{ strtoupper($adelanto->creador->name) }} @php if ( strtoupper( $adelanto->salidacuenta->cuenta->tipomoneda->nombre, ) == 'DOLARES' ) { $coin_simbol = '$'; } else { $coin_simbol = 'S/.'; } @endphp @if ($adelanto->total_sin_detraccion)

{{ $coin_simbol }}

{{ number_format($adelanto->total_sin_detraccion, 2) }}

@else - @endif
@if ($adelanto->cerrado) CERRADO @else PENDIENTE @endif

{{ $coin_simbol }}

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

@if ($adelanto->cerrado == 0) @endif
@if ($adelanto->cerrado == 0)
@csrf @method('DELETE')
@endif
{{ __('No hay datos disponibles') }}
{{ $adelantos->links('pagination::bootstrap-4') }}
Mostrando del {{ $adelantos->firstItem() }} al {{ $adelantos->lastItem() }} de {{ $adelantos->total() }} registros
@include('tesoreria.adelantos.modal.create') @include('tesoreria.adelantos.modal.export') @foreach ($adelantos as $adelanto) @include('tesoreria.adelantos.modal.edit') @endforeach @stop @section('js') @stop