@extends('layouts.app') @section('content') @extends('contabilidad.menu')

Cuenta Corriente


@foreach ($clientes as $cliente) @endforeach @foreach ($clientes_saldo as $cliente) @endforeach
ID Nombre Total Vigente +30 días +60 días +90 días Ejecutivo
{{ $cliente?->id }} {{ $cliente->nombre ?? 'No Disponible' }} {{ number_format($total_cliente[$cliente?->id] ?? 0, 2, '.', ',') }} {{-- Calcular el total de facturas vigentes --}} @php $total_vigente = 0; if (isset($vigente_clientes[$cliente?->id])) { foreach ($vigente_clientes[$cliente->id] as $factura) { $total_vigente += $factura->total - $factura->abono; } } @endphp {{ number_format($total_vigente, 2, '.', ',') }} {{ number_format($total_cliente_dias[$cliente?->id][30] ?? 0, 2, '.', ',') }} {{ number_format($total_cliente_dias[$cliente?->id][60] ?? 0, 2, '.', ',') }} {{ number_format(($total_cliente_dias[$cliente?->id][90] ?? 0) + ($total_cliente_dias[$cliente?->id][100] ?? 0), 2, '.', ',') }} {{ $cliente?->info_ejecutivo->name ?? 'No Disponible1' }}
{{ $cliente?->id }} {{ $cliente?->nombre }} -{{ number_format($cliente?->saldo_favor ?? 0, 2, '.', ',') }} -{{ number_format($cliente?->saldo_favor ?? 0, 2, '.', ',') }} {{ $cliente?->info_ejecutivo->name ?? 'No Disponible' }}
.TOTAL {{ number_format($total_total, 2, '.', ',') }} {{ number_format($total_vigente, 2, '.', ',') }} {{ number_format($total_total30, 2, '.', ',') }} {{ number_format($total_total60, 2, '.', ',') }} {{ number_format($total_total90 + $total_total100, 2, '.', ',') }}
@endsection