@extends('layouts.modern') @section('content') {{-- Custom JS --}} @section('custom-css') {{-- AdSense status --}} @if ($setting->adsense_code != 'DISABLE') @if ($setting->adsense_code != '') {{-- AdSense code --}} @endif @endif @endsection {{-- Topbar --}} @include('website.modern.includes.topbar')

{{ $blogDetails->heading }}

{{ $blogDetails->short_description }}

{{ $blogDetails->heading }}

{{ $blogDetails->blogCategory->blog_category_title }}

{{ $blogDetails->user->name }}

{{ Carbon\Carbon::parse($blogDetails->created_at)->format('d M Y h:i A') }}

{{ $blogDetails->heading }}
{!! $blogDetails->long_description !!}

{{ __('Related Tags:') }}

{{-- Tags --}}
@php // Tags separated $tags = explode(',', $blogDetails->tags); $tags = collect($tags)->all(); @endphp @foreach ($tags as $tag)
{{ strtoupper($tag) }}
@endforeach
{{-- Share --}}

{{ __('Share This Blog Post') }}

{{-- Recent blogs --}} @if (count($recentBlogs) > 0)

{{ __('Recent Blogs') }}

@endif
{{-- Footer --}} @include('website.modern.includes.footer') @endsection