@extends('layouts.client.layout') @section('title') {{ @$blog->seo_title }} @endsection @section('meta') @endsection @section('client-content')
{{ $website_lang->where('lang_key','admin')->first()->custom_lang }} {{ $blog->created_at->format('m-d-Y') }} {{ $blog->category->name }}

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

{!! clean($blog->description) !!}
@if ($setting->comment_type==0)

{{ $website_lang->where('lang_key','comments')->first()->custom_lang }}

@else
@if ($blog->comments->where('status',1)->count() !=0)

{{ $website_lang->where('lang_key','comments')->first()->custom_lang }} ({{ $blog->comments->where('status',1)->count() }})

@endif
    @foreach ($blog->comments->where('status',1) as $comment)
  • @php $gravatar_link = 'http://www.gravatar.com/avatar/' . md5($comment->email) . '?s=32'; header("content-type: image/jpeg"); @endphp
    {{ ucwords($comment->name) }}
    {{ date('d F, Y', strtotime($comment->created_at->format('Y-m-d'))) }}

    {{ $comment->comment }}

  • @endforeach

{{ $website_lang->where('lang_key','submit_comment')->first()->custom_lang }}

@csrf
@if($setting->allow_captcha==1)
@endif
@endif
@endsection