@extends('layouts.app') @section('title', 'Blog de OfertasViajes - ofertasviajes.cl') @section('content')
{{-- HERO --}}

Descubre tu próximo destino

Inspírate con nuestras recomendaciones, guías y artículos para planificar viajes inolvidables por Chile y el mundo.

{{-- TITULO --}}

Últimas recomendaciones del blog

Artículos pensados para inspirarte, informarte y ayudarte a encontrar tu próxima aventura

{{-- POSTS --}}
@foreach($posts as $post)
@if($post->featured_image) {{ $post->title }} @else Destino turístico @endif {{ $post->category->name ?? 'Viajes' }}
{{ $post->created_at ? $post->created_at->format('d M Y') : '' }}

{{ $post->title }}

{{ $post->excerpt }}

Leer más
@endforeach
{{-- PAGINACION --}}
{{ $posts->links() }}
@endsection