@extends("front/layout.master") @section('title',"$value->heading | ") @section('meta_tags') @endsection @section("body")

blog_image

{{ $value->heading }}

{{ $value->user }} {{ $value->comments->count() }} {{ __('staticwords.Comments') }} | {{ date('d/m/Y | h:i A',strtotime($value->created_at)) }} | {{ views($value)->unique()->count() }} | {{ read_time($value->des ) }} {!! $value->des !!} @php echo Share::currentPage(null,[],'
', '
') ->facebook() ->twitter() ->telegram() ->whatsapp(); @endphp
@if(count($value->comments)>0)

{{ $value->comments->count() }} {{ __('staticwords.Comments') }}

@foreach($value->comments->sortByDesc('id')->take(5) as $comment) @if($comment->status == 1)
user_image

{{ $comment->name }}

{{ \Carbon\Carbon::parse($comment->created_at)->diffForHumans() }} {!! $comment->comment !!}
@endif @endforeach @if(count($value->comments)>5)
@endif @else

{{ __('staticwords.nocomment') }}

@endif

{{ __('staticwords.LeaveAComment') }}

@csrf
@endsection @section('script') @endsection