@if($post->thumb != NULL)
{{ $post->title }}
@endif

{{ Helper::utcToLocalDateTime($post->publish_date)}} | {{ count($post->approved_comments) }} Comments

{{ $post->title }}

{!! html_entity_decode($post->description) !!} @if($post->comments != null)
    @foreach ($post->comments as $comment) @if($comment->approved == 'Approved')
  1. user {{ $comment['name'] }} says:

    {{ Helper::utcToLocalDateTime($comment->created_at)}}

    {{ $comment['comment'] }}

  2. @endif @endforeach
@endif

Leave a Reply

Your email address will not be published. Required fields are marked *

@include('public.pages.blog.comment')