EVOLUTION-MANAGER
Edit File: seccion_noticias.blade.php
@php $noticias=App\articuloModel::where('tipo_articulo_id',3) ->whereNull("articulo.deleted_at") ->orderBy('created_at','desc') ->get() ->take(6); @endphp <div class="container-fluid seccion_notificas" style="background-color: #F3F3F3;"> <div class="container pb-3 py-5"> <div class="in_title text-center mb-3 pb-5 py-5"> <div class="in_subtitle"> <hr><h6>Información</h6><hr> </div> <h1>Noticias</h1> </div> <div class="row py-5"> @foreach ($noticias as $noti) <div class="col-lg-4 col-md-6 mb-4"> <div class="package-item bg-white mb-2 noti_content"> <div class="cont_img"> <img class="img-fluid" src="{{url("public/fotos-articulos/".$noti->foto)}}" alt="" onerror="this.style.display = 'none'"> <img class="img-fluid" src="{{url("fotos-articulos/".$noti->foto)}}" alt="" onerror="this.style.display = 'none'"> </div> <span class="noti_fecha">{{date("d M Y", strtotime($noti->created_at))}}</span> <div class="p-4"> <a class="noti_titu text-decoration-none" href="">{{$noti->titulo}}</a> <div class="border-top mt-3 pt-3"> <div class="d-flex justify-content-between"> {!!strip_tags($noti->detalle)!!} </div> <a href="{{url("noticias/".str_random(20).$noti->id.str_random(20).strlen($noti->id))}}" class="boton btn_primary btn-primary mt-1">Ver más »</a> </div> </div> </div> </div> @endforeach <div class="col-lg-12 col-md-12 mb-12"> <center> <a class="noti_vermas" href="{{asset('/noticias')}}">Ver más noticias »</a> </center> </div> </div> </div> </div>