@extends('layouts.app') @section('content')
{{-- Breadcrumb --}}
Blog @if($blog->blogCategory)/{{ $blog->blogCategory->name }}@endif /{{ Str::limit($blog->title,40) }}
{{-- Header --}}
@if($blog->blogCategory) {{ $blog->blogCategory->name }} @endif

{{ $blog->title }}

{{ $blog->author?->name ?? 'Shalik Team' }} {{ $blog->published_at?->format('F d, Y') }} @if($blog->read_time){{ $blog->read_time }} min read@endif {{ number_format($blog->view_count) }} views
{{-- Featured Image --}}
{{ $blog->title }}
{{-- Content --}}
{!! $blog->content !!}
{{-- Tags --}} @if($blog->tags)
Tags: @foreach($blog->tags as $tag) #{{ $tag }} @endforeach
@endif {{-- Related --}} @if($relatedBlogs->count())

Related Articles

@endif
@endsection