EVOLUTION-MANAGER
Edit File: 306dd57ac749bc6a3f4ad7435e47ea2f4fcc9f64.php
<?php if(count($resultado)): ?> <table class="table table-bordered table-hover"> <thead> <tr> <th>CODIGO</th> <th>IMPUESTO</th> <th>AÑO</th> <th>CONTRIBUYENTE</th> <th>VALOR</th> <th>ACCIÓN</th> </tr> </thead> <tbody> <?php $__currentLoopData = $resultado; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $resul): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($resul->numero_emision); ?></td> <td><?php echo e($resul->tipo_impuesto); ?></td> <td><?php echo e($resul->anio); ?></td> <td><?php echo e($resul->contribuyente); ?></td> <td><?php echo e(number_format($resul->total, 2, '.', '')); ?></td> <td> <a class="btn btn-primary btn-xs" style="color: white;" target="_blank" href="<?php echo e(url('titulo_credito/'.encrypt($resul->numero_emision))); ?>"><i class="fa fa-print"></i></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php else: ?> <?php if(isset($error)): ?> <center><h1>NO SE PUDO OBTENER LA INFORMACIÓN</h1></center> <?php else: ?> <center><h1>TITULOS NO ENCONTRADOS</h1></center> <?php endif; ?> <?php endif; ?>