@extends('layouts.modern-orange') @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-orange.includes.topbar') {{-- Start View Blog --}}
{{ $blogDetails->blogCategory->blog_category_title }}

{{ $blogDetails->heading }}

{{ $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) @endif
{{-- End View Blog --}} {{-- Start call action section --}} @include('website.modern-orange.includes.call-action') {{-- End call action section --}} {{-- Footer --}} @include('website.modern-orange.includes.footer') @endsection