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> @if($resultado->numero_emision) <td>{{ $resultado->numero_emision }}</td> @endif @if($resultado->tipo_impuesto) <td>{{ $resultado->tipo_impuesto }}</td> @endif @if($resultado->anio) <td>{{ $resultado->anio }}</td> @endif @if($resultado->contribuyente) <td>{{ $resultado->contribuyente }}</td> @endif @if($resultado->total) <td>{{ $resultado->total }}</td> @endif </tr> </tbody> </table> </div> @else <center><h1>DOCUMENTO NO ENCONTRADO</h1></center> @endif