@extends('frontend.layouts.master') @section('title') {{ $post->title ?? 'Post Details' }} - Bangladesh Unbound @endsection @section('meta_title', $post->meta_title ?? '') @section('meta_description', $post->meta_description ?? '') @section('meta_keywords', $post->meta_keyword ?? '') @section('content')

{{ $post->title ?? 'Post Details' }}

@if ($post?->category?->name) {{ $post->category->name }} @endif
@if ($post->image) {{ $post->title }} @else No Image @endif

{{ $post->title }}

Published on: {{ $post->published_date?->format('F d, Y') ?? '-' }}

{!! $post->description !!}
Back to Home @if ($post?->category) {{ $post->category->name }} @endif
@if ($relatedPosts->count() > 0)

Related Post

You May Also Like

@foreach ($relatedPosts as $post)
@if ($post->image) {{ $post->title }} @else
No Image
@endif
{{ $post?->category?->name ?? '-' }}
{{ Str::limit($post->title, 90) }}

{{ Str::limit($post->description, 180) }}

Read More
@endforeach
@else

No related posts.

@endif
@endsection