@extends('layouts/layoutMaster') @section('title', 'Salud de embeds') @section('content')
Embeds de anuncios por revisar
Detecta posts con listing cards no disponibles y entra al editor para reemplazarlas o quitarlas.
Volver al blog
@if($rows->isEmpty())
No encontramos embeds de anuncios caidos en los posts del blog.
@else
@foreach($rows as $row) @php /** @var \App\Models\BlogPost $post */ $post = $row['post']; @endphp @endforeach
Post Embeds afectados Acciones
{{ $post->title }}
/{{ $post->slug }}
Actualizado: {{ optional($post->updated_at)->format('Y-m-d H:i') }}
@foreach($row['embeds'] as $embed)
{{ $embed['title'] ?? 'Anuncio no disponible' }}
ID embed: {{ $embed['id'] ?? 'sin id' }} ยท {{ $embed['city'] ?? 'Marketplace' }}
{{ $embed['eyebrow_label'] ?? 'No disponible' }}
{{ $embed['summary'] ?? 'Este anuncio ya no esta disponible y conviene reemplazarlo.' }}
@if(!empty($embed['cta_url'])) Abrir alternativa @endif @if(!empty($embed['detail_url'])) Abrir ficha @endif
@endforeach
Editar post {{ $row['count'] }} embed(s) por resolver
@endif
@endsection