@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 Home {{ $post->title ?? 'Post Details' }} @if ($post->image) @else @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) @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
Published on: {{ $post->published_date?->format('F d, Y') ?? '-' }}
Related Post
{{ Str::limit($post->description, 180) }}
No related posts.