@extends('layouts.index', ['nav' => true, 'banner' => false, 'footer' => true, 'cookie' => true, 'setting' => true]) {{-- Custom JS --}} @section('custom-script') {{-- AdSense status --}} @if ($settings->adsense_code != 'DISABLE') {{-- AdSense code --}} @endif @endsection @section('content') {{-- Start View Blog --}} {{ $blogDetails->blogCategory->blog_category_title }} {{ $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') }} @foreach ($recentBlogs as $blog) {{ Carbon\Carbon::parse($blog->created_at)->format('d M Y') }} {{ $blog->heading }} {{ $blog->short_description }} @endforeach @endif {{-- End View Blog --}} @endsection
{{ $blog->short_description }}