@extends('layout_inner_page') @section('title') {{ $blog->seo_title }} @php $tags = ''; if($blog->tags){ foreach (json_decode($blog->tags) as $key => $blog_tag) { $tags .= $blog_tag->value.', '; } } @endphp @endsection @section('front-content') @include('breadcrumb')

{{ __('translate.By') }} {{ $blog?->author?->name }}

  • @include('svg.blog_calander')
    {{ $blog->created_at->format('d-m-Y') }}
  • {{ $blog->total_comment }} {{ __('translate.Comment') }}
  • {{ $blog->views }} {{ __('translate.views') }}

{{ $blog?->title }}

{!! clean($blog->description) !!}

{{ __('translate.Tags') }}:

@if ($blog->tags) @foreach (json_decode($blog->tags) as $blog_tag) #{{ $blog_tag->value }} @endforeach @endif

{{ __('translate.Author') }}

{{ $blog?->author?->name }}

{{ $blog?->author?->about_me }}

{{ $blog->total_comment }} {{ __('translate.Comments') }}

    @foreach ($blog_comments as $blog_comment)
  1. @endforeach

{{ __('translate.Post a comment') }}

{{ __('translate.Your email address will not be published. Required fields are marked') }} *

@csrf
@if($general_setting->recaptcha_status==1)
@endif

{{ __('translate.Search Here') }}

{{ __('translate.Recent Post') }}

{{ __('translate.Popular Category') }}

{{ __('translate.Tags') }}

@foreach ($tags_array as $tag_item) {{ $tag_item }} @endforeach
@endsection @push('js_section') @endpush