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

{{ $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 !!}
@php $shareUrl = urlencode(url()->current()); $shareText = urlencode($value->heading); @endphp
{{ __('Share') }}:
{{-- Author --}}
{{ $value->user }}
{{ $value->user }}
{{ $value->post }}

{{ $value->about }}

{{-- Comments --}}

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

@if(count($value->comments) > 0) @foreach($value->comments->sortByDesc('id')->take(5) as $comment) @if($comment->status == 1)
{{ $comment->name }} {{ \Carbon\Carbon::parse($comment->created_at)->diffForHumans() }}
{{ strip_tags((string) $comment->comment) }}
@endif @endforeach @if(count($value->comments) > 5)
@endif @else

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

@endif
{{-- Comment Form --}}

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

@csrf
{{-- Sidebar --}}
@endsection @section('script') @endsection