EVOLUTION-MANAGER
Edit File: noticias.blade.php
<?php use App\articulo; $destacados=articulo::where('tipo_articulo_id',3) ->orderBy('destacado','DESC') ->get(['titulo','foto','url_direccion','titulo_sub']) ->take(4); ?> @foreach ($destacados as $destacado) <?php $dir=URL::asset($destacado->titulo_sub); if($destacado->url_direccion!=null) { $dir=$destacado->url_direccion; } ?> <div id="espacio-img" class="col-md-5 col-xs-5"> <img width="300" height="171" src="{{ asset('/fotos-articulos/'.$destacado->foto) }}" class="img-responsive wp-post-image" alt="" srcset="{{ asset('/fotos-articulos/'.$destacado->foto) }} 300w, {{ asset('/fotos-articulos/'.$destacado->foto) }} 730w" sizes="(max-width: 300px) 100vw, 300px" /> <div id="overlay"> <a href="{{ $dir }}"> <h4>{{ $destacado->titulo }}</h4> </a> </div> </div> @endforeach