@extends('layouts.app') @section('meta_title', $post->meta_title) @section('meta_description', $post->meta_description) @section('meta_keywords', $post->meta_keywords) @section('canonical_url', $post->canonical_url ?: route('blog.show', $post->slug)) @section('og_title', $post->og_title) @section('og_description', $post->og_description) @section('og_type', $post->og_type) @section('og_image', $post->og_image ?: $post->featured_image) @section('og_url', route('blog.show', $post->slug)) @section('twitter_title', $post->twitter_title) @section('twitter_description', $post->twitter_description) @section('twitter_image', $post->twitter_image ?: $post->featured_image) @section('twitter_card', $post->twitter_card) @push('structured_data') @if($post->schema_data) @endif @endpush @php $breadcrumbs = [ ['title' => 'Home', 'url' => route('blog.index')], ['title' => $post->category->name, 'url' => route('blog.category', $post->category->slug)], ['title' => $post->title] ]; @endphp @section('content')
{{ $relatedPost->published_at->format('d M Y') }}
{{ $recentPost->published_at->format('d M Y') }}
Artikel ini membahas tentang {{ $post->category->name }} dengan detail yang lengkap dan mudah dipahami.