{{ $value->heading }}
{{ $value->user }}
{{ date('d M Y', strtotime($value->created_at)) }}
{{ $value->comments->count() }} {{ __('staticwords.Comments') }}
{{ views($value)->unique()->count() }}
{{ read_time($value->des) }}
{!! $value->des !!}
{{ $value->user }}
{{ $value->post }}
{{ $value->about }}
{{ $value->comments->count() }} {{ __('staticwords.Comments') }}
@if(count($value->comments) > 0)
@foreach($value->comments->sortByDesc('id')->take(5) as $comment)
@if($comment->status == 1)
@endif
@endforeach
@if(count($value->comments) > 5)
@endif
@else
{{ $comment->name }}
{{ \Carbon\Carbon::parse($comment->created_at)->diffForHumans() }}
{{ strip_tags((string) $comment->comment) }}
{{ __('staticwords.nocomment') }}
@endif