|
@if ($item->documento)
{{$item->documento}}
@else
No definido
@endif
|
@if ($item->pago_cliente_id)
{{ $item->pago_cliente_id }}
@else
No definido
@endif
|
@if ($tipo != 6)
{{ $item->contrato_codigo }}
@else
No definido
@endif
|
@if ($tipo == 1)
{{ $item->entidad_nombre }}
@else
No definido
@endif
|
@if ($item->pago_forma_pago_id)
{{ $item->pago_forma_pago_id }}
@else
No definido
@endif
|
@if ($item->pago_consecutivo)
{{ $item->pago_consecutivo }}
@else
@endif
|
@if ($item->consecutivo_temporal)
{{ $item->consecutivo_temporal }}
@else
@endif
|
@if ($item->pago_consecutivo_manual)
{{ $item->pago_consecutivo_manual }}
@else
@endif
|
@php
$referencia = null;
if($item->pago_referencia != null){
$referencia = $item->pago_referencia;
}elseif($item->pago_referencia == null && $item->pago_por_medio_de_pago_comprobante != null){
$referencia = $item->pago_por_medio_de_pago_comprobante;
}
@endphp
{{ $referencia }}
|
{{ $item->pago_fecha ? date('d-m-Y', strtotime($item->pago_fecha)): '' }} |
@if ($tipo == 1)
{{ $item->pago_planilla_fecha_pago_factura }}
@else
No definido
@endif
|
{{ $item->pago_fecha_creacion ? date('d-m-Y', strtotime($item->pago_fecha_creacion)): '' }} |
@php
$creadoPor = $controlador->getCreadoPorNew($item->pago_creadopor);
@endphp
{{ $creadoPor }}
|
{{ $item->concepto }} |
{{ $item->pago_valor }} |
{{ $item->pago_total }} |
@php
$saldoFavor = $controlador->getSaldoFavorPago($item->pago_id, $item->pago_cliente_id);
@endphp
{{ $saldoFavor }}
|
@if ($item->pago_observaciones)
{{ $item->pago_observaciones }}
@else
@endif
|
{{-- @php
$forma_pagoModulo = $controlador->getFomarPagoModuloManual( $item->pago_forma_pago_modulo_manual)->forma_pago_nombre;
@endphp --}}
{{ $item->pago_forma_pago_modulo_manual }}
|
@if ($item->nombre_modificado_por)
{{ $item->nombre_modificado_por }}
@else
@endif
|
@if ($item->pago_fechamodificacion)
{{ $item->pago_fechamodificacion }}
@else
@endif
|
@if ($item->pago_es_prima)
{{ $item->pago_es_prima }}
@else
No definido
@endif
|
{{ $item->pago_estado }}
|
@endforeach