@extends('layout.index') @section('seo') @endsection {{-- @dd($noticia); --}} @section('content')
{{-- @include('pages.noticias.sections.banner') --}}
@include('pages.noticias.view.banner')
@include('pages.noticias.view.share')
{!! $noticia->content !!}
@php $raw = $noticia->tags ?? ''; $raw = trim($raw, "\"' \t\n\r\0\x0B"); if (str_contains($raw, '\u')) { $jsonStr = '"'.addcslashes($raw, "\\\"").'"'; $decoded = json_decode($jsonStr, true); if (json_last_error() === JSON_ERROR_NONE) { $raw = $decoded; } } if (is_string($raw) && str_starts_with($raw, '[') && str_ends_with($raw, ']')) { $tags = json_decode($raw, true) ?: []; } else { $tags = array_filter(array_map('trim', explode(',', (string) $raw))); } @endphp @if (!empty($tags))
@foreach ($tags as $tag) {{ $tag }} @endforeach
@endif
@include('pages.noticias.view.previews')
Paquete Maternidad parto normal en Médica Santé León Guanajuato
Paquete Maternidad cesárea en Médica Santé León Guanajuato
Paquete Maternidad cesárea  en Médica Santé León Guanajuato
@endsection @php $articleSchema = [ "@context" => "https://schema.org", "@type" => "BlogPosting", "headline" => $noticia->title, "description" => $noticia->description, "image" => Storage::url($noticia->image), "author" => [ "@type" => "Organization", "name" => "Médica Santé" ], "publisher" => [ "@type" => "Organization", "name" => "Médica Santé", "logo" => [ "@type" => "ImageObject", "url" => asset('images/logo.webp') ] ], "mainEntityOfPage" => [ "@type" => "WebPage", "@id" => url()->current() ], "datePublished" => $noticia->created_at->toIso8601String(), "dateModified" => $noticia->updated_at->toIso8601String(), "keywords" => $tags ?? [], ]; @endphp @verbatim @endverbatim