EVOLUTION-MANAGER
Edit File: resultado_validacion.blade.php
@if($resultado!=null) <div> <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> </tr> </thead> <tbody> <tr> <td>{{ $resultado->numero_emision }}</td> <td>{{ $resultado->tipo_impuesto }}</td> <td>{{ $resultado->anio }}</td> <td>{{ $resultado->contribuyente }}</td> <td>{{ $resultado->total }}</td> </tr> </tbody> </table> </div> @else <center><h1>DOCUMENTO NO ENCONTRADO</h1></center> @endif