EVOLUTION-MANAGER
Edit File: resultado_validacion_descarga.blade.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> @foreach($resultado as $resul) <tr> <td>{{ $resul->numero_emision }}</td> <td>{{ $resul->tipo_impuesto }}</td> <td>{{ $resul->anio }}</td> <td>{{ $resul->contribuyente }}</td> <td>{{ number_format($resul->total, 2, '.', '') }}</td> <td> <a class="btn btn-primary btn-xs" style="color: white;" target="_blank" href="{{ url('titulo_credito/'.encrypt($resul->numero_emision)) }}"><i class="fa fa-print"></i></a> </td> </tr> @endforeach </tbody> </table> @else @if(isset($error)) <center><h1>NO SE PUDO OBTENER LA INFORMACIÓN</h1></center> @else <center><h1>TITULOS NO ENCONTRADOS</h1></center> @endif @endif