@extends('user-front.layout') @section('tab-title') {{ $keywords['Blog_Details'] ?? 'Blog Details' }} @endsection @section('og-meta') @endsection @section('meta-description', $blog->meta_description) @section('meta-keywords', $blog->meta_keywords) @section('page-name') {{ $keywords['Blog_Details'] ?? 'Blog Details' }} @endsection @section('br-name') {{ $keywords['Blog_Details'] ?? 'Blog Details' }} @endsection @section('content') {{ $blog->bcategory->name }} {{ \Carbon\Carbon::parse($blog->created_at)->format('F j, Y') }} {{ $blog->title }} {!! replaceBaseUrl($blog->content) !!} {{ $keywords['Categories'] ?? 'Categories' }} @if (count($blog_categories) == 0) {{ __('No Blog Category Found!') }} @else @endif {{ $keywords['All'] ?? 'All' }} ({{ $allCount }}) @foreach ($blog_categories as $bc) {{ $bc->name }} ({{ $bc->blogs()->count() }}) @endforeach {{ $keywords['Latest_Blogs'] ?? 'Latest Blog' }} @if (count($latestBlogs) == 0) {{ __('No Latest Blog Found!') }} @else @foreach ($latestBlogs as $latestBlog) {{ \Carbon\Carbon::parse($latestBlog->created_at)->format('F j, Y') }} {{ strlen($latestBlog->title) > 30 ? mb_substr($latestBlog->title, 0, 30, 'UTF-8') . '...' : $latestBlog->title }} @endforeach @endif @endsection @if (in_array('Plugins', $packagePermissions)) @if ($userBs->disqus_status == 1) @section('scripts') @endsection @endif @endif