@extends('front.layout') @section('meta-keywords', "$blog->meta_keywords") @section('meta-description', "$blog->meta_description") @section('content')

{{ __('blog Details') }}

blog

{{ $blog->title }}

{!! $blog->content !!}
@if($visibility->is_blog_share_links == 1)

{{ __('Social Share :') }}

@endif

@if($visibility->is_disqus == 1)
@endif

{{ __('Search Blog') }}

{{ __('Categories') }}

{{ __('Arcive') }}

    @foreach ($archives as $key => $archive) @php $myArr = explode('/', $archive->date); $monthNum = $myArr[0]; $dateObj = DateTime::createFromFormat('!m', $monthNum); $monthName = $dateObj->format('F'); @endphp
  • {{$monthName}} {{$myArr[1]}}
  • @endforeach
@endsection