{!! clean($blog_detail->post_content) !!}
@if($blog_detail->comment_show == 'Yes')
{{ count($comments) }} {{ COMMENTS }}
@if(count($comments) == 0){{ NO_COMMENT_FOUND }}
@else
@foreach($comments as $row)
@php
$gravatar_link = 'http://www.gravatar.com/avatar/' . md5($row->person_email) . '?s=32';
header("content-type: image/jpeg");
@endphp
{{ $loop->iteration . '. ' . $row->person_name }}
{!! clean(nl2br($row->person_comment)) !!}