@extends('layouts/master')
@section('content')
{{--*/
$totalpag = 0;
$listbypage= 150;
$i=0;
$j=0;
/*--}}
MÓDULO DE CARGA DE ARCHIVO POR LOTE A IMPORTADOS: MEGA SOFT
@if ((count($data['entidadRespuesta']) > 0) and (!empty($data)))
{{--*/
$totalpag = count($data['entidadRespuesta'])/$listbypage;
$totalpag = floor($totalpag)+1;
/*--}}
Nro. |
Afiliado |
Fecha Cierre |
Tipo Pago |
Lote |
Terminal |
Monto Bruto Bs |
Comisión Bs |
Retención Bs |
Monto Neto Bs |
@for ($i=0;$i<$totalpag;$i++)
{{--*/
$desde = (($i+1)*$listbypage)-$listbypage;
/*--}}
@if($i==0)
{{--*/ $visible='overflow'; /*--}}
@else
{{--*/ $visible='none'; /*--}}
@endif
@if(($totalpag-$i)==1)
{{--*/ $hasta = count($data['entidadRespuesta']); /*--}}
@else
{{--*/ $hasta = ($i+1)*$listbypage; /*--}}
@endif
@for ($j = $desde; $j < $hasta; $j++)
{{$j+1}} |
|
01-01-1970 |
|
|
|
0,00 |
0,00 |
0,00 |
0,00 |
@endfor
Total por Página Bs. |
0,00 |
0,00 |
0,00 |
0,00 |
@endfor
@else
No Existen Datos Registrados |
@endif
@endsection