@extends('front.layouts.app') @section('seo') {{-- Meta Description --}} {{-- Meta Keywords --}} @if (!empty($post->meta['keywords'])) @endif {{-- Canonical URL --}} {{-- Open Graph (WhatsApp / Facebook / LinkedIn previews) --}} @if ($post->featured_image) @endif {{-- Twitter Card --}} @if ($post->featured_image) @endif @endsection @section('content')
{{ $post->title }}
@foreach ($post->categories ?? [$post->category] as $category) {{ $category->name ?? 'Uncategorized' }} @endforeach

{{ $post->title }}

{{ $post->published_at?->format('F j, Y') }} | {{ $post->views ?? 0 }} | {{ $post->comments_count ?? 0 }}
{!! $post->content !!}
RELATED ARTICLES
@foreach($relatedPosts as $related) @endforeach
{{--

Blog Details

--}} {{--
@if ($post->featured_image)
{{ $post->title }} @if ($post->category)
{{ $post->category->name }}
@endif
@endif
{{--
alternaate taext

author name

Author

--}} {{--
{{ $post->published_at->format('M d, Y') }}
--}} {{--
{{ $post->reading_time }} min read
--}} {{--
{{ number_format($post->views) }} views
--}} {{--

{{ $post->title }}

--}} {{-- @if ($post->excerpt)

{{ $post->excerpt }}

@endif --}} {{--
{!! $post->content !!}
--}} {{-- @if ($post->tags->count() > 0)
Tags
@foreach ($post->tags as $tag) #{{ $tag->name }} @endforeach
@endif --}} {{--
--}} {{-- --}} {{--
--}} {{-- @endsection