EVOLUTION-MANAGER
Edit File: tablalotaip.blade.php
<table class="tabla-lotaip"> <thead> <tr> <th>Descripción</th> <th>PDF</th> <th>Conjunto de datos</th> <th>Metadatos</th> <th>Diccionario</th> </tr> </thead> <tbody> @foreach ($lotaipvigente as $lt) @foreach ($lotaip as $dt) @if ($dt->id_lotaip == $m->id_lotaip) @if ($dt->id_lotaipvigente == $lt->id_lotaipvigente) @if ($dt->posicion == 1) <tr> <td>{{$lt->titulo}}</td> @endif @if ($dt->posicion == 1) <td> @if ($dt->archivo != "") <a href="{{ url(env('RUTA_DRIVE_VIEW')) }}{{$dt->archivo}}/view" style="text-decoration: none;" target="_blank"> <i class="icon-file-pdf" style="color: black; font-style: normal;">Ver</i> </a> @else <a style="text-decoration: none;"> <i class="icon-file-pdf" style="color: black; font-style: normal;">Ver</i> </a> @endif </td> @endif @if ($dt->posicion == 2) <td> @if ($dt->archivo != "") <a href="{{ url(env('RUTA_DRIVE_VIEW')) }}{{$dt->archivo}}/view" style="text-decoration: none;" target="_blank"> <i class="icon-table" style="color: black; font-style: normal;">Datos</i> </a> @else <a style="text-decoration: none;"> <i class="icon-table" style="color: black; font-style: normal;">Datos</i> </a> @endif </td> @endif @if ($dt->posicion == 3) <td> @if ($dt->archivo != "") <a href="{{ url(env('RUTA_DRIVE_VIEW')) }}{{$dt->archivo}}/view" style="text-decoration: none;" target="_blank"> <i class="icon-doc-text" style="color: black; font-style: normal;">Metadatos</i> </a> @else <a style="text-decoration: none;"> <i class="icon-doc-text" style="color: black; font-style: normal;">Metadatos</i> </a> @endif </td> @endif @if ($dt->posicion == 4) <td> @if ($dt->archivo != "") <a href="{{ url(env('RUTA_DRIVE_VIEW')) }}{{$dt->archivo}}/view" style="text-decoration: none;" target="_blank"> <i class="icon-book" style="color: black; font-style: normal;">Diccionario</i> </a> @else <a style="text-decoration: none;"> <i class="icon-book" style="color: black; font-style: normal;">Diccionario</i> </a> @endif </td> </tr> @endif @endif @endif @endforeach @endforeach </tbody> </table>