@if (isset($calculos))
Registros
{{ $calculos['registros'] }}
Dinero
{{number_format($calculos['dinero'],2,",",".")}}
@endif
@if (isset($respuesta))
Póliza |
Importe |
Fecha Informada |
@if (count($respuesta) >= 1)
@foreach($respuesta as $row)
{{ $row['poliza'] }} |
{{ $row['importe'] }} |
{{ $row['fechaPago'] }} |
@endforeach
@endif
@endif
@include('layouts.alerts.error')