@extends('layouts.master') @section('css') @stop @section('content')

Solvencia Administrativa al {!!date("d/m/Y")!!} con valor de tasa BCV {!!number_format($variacion , 2, ',', '.')!!} Bs.


@if(Session::has('mensaje_error'))

{!! Session::get('mensaje_error') !!}
@endif @if ($mensaje_insol == "Insolvente") @foreach($insol as $key => $value) @endforeach
Concepto Saldo en Dolares Monto (Bs.) Fecha de Vencimiento
{!!$value->concepto!!} {!!$value->saldoDolares!!} {!!number_format($value->saldoDolares*$variacion, 2, ',', '.')!!} {!!date_format(date_create($value->fecha),'d/m/Y')!!}
SALDO DEUDOR:
{!! number_format($total, 2, ',', '.') !!}

Historial de Pagos
@foreach($historial_pago as $key1 => $value1) @endforeach
Monto Concepto Estatus Fecha de Operación Fecha de Carga Equivalente Observacion
{!!number_format($value1->monto, 2, ',', '.')!!} Bs {!!$value1->concepto!!} @if($value1->estatus==1) Revisado @else Pendiente @endif {!!date_format(date_create($value1->fecha_transf),'d/m/Y')!!} {!!date_format(date_create($value1->fecha_carga),'d/m/Y')!!} $ {!!number_format($value1->monto/variacionDolarActual($value1->fecha_carga), 2, '.', ',')!!} {!!$value1->observacion!!}
@endif

@if ($mensaje_insol == "Solvente") @endif
@stop