{{-- @extends('layouts.navbar') --}} @extends('layouts.app') @section('title', 'Noticias') @section('contenido')

Noticias y Actualidad

Mantente informado sobre las últimas noticias - Centro Textil y de Gestión Industrial


@foreach($noticias as $noticia)
{{-- Portada --}} @if($noticia->portada_type === 'image') {{ $noticia->titulo }} @elseif($noticia->portada_type === 'youtube' || $noticia->portada_type === 'iframe')
@endif
{{ $noticia->titulo }}
@php $partes = explode('"', $noticia->subtitulo); @endphp
{{ trim($partes[0]) }}
@if(isset($partes[1]))

"{{ $partes[1] }}"

@endif

{{ Str::limit($noticia->descripcion, 120) }}

Posted by : CTGI {{ \Carbon\Carbon::parse($noticia->fecha)->locale('es')->isoFormat('D [de] MMMM [de] YYYY') }}

{{ $noticia->vistas }} vistas {{ $noticia->comentarios->count() }} comentarios {{ $noticia->created_at->diffForHumans() }}
@csrf
Leer más
@endforeach
{{ $noticias->links('vendor.pagination.custom') }}
Noticias recientes
    @forelse($recent_news as $news)
  • {{ $news->titulo }} {{ $news->fecha_formateada }}
  • @empty
  • No hay noticias recientes.
  • @endforelse
Enlaces de interés
Noticias más populares
    @forelse($popular_news as $news)
  • {{ $news->titulo }} {{ $news->fecha_formateada }}
  • @empty
  • No hay noticias más populares.
  • @endforelse
Portada
@endsection