@php $comments = $post->getComments()->get(); @endphp
@if ($comments->isNotEmpty()) @foreach($comments as $comment)
{{ $comment->createdBy?->name }}
{{ date('Y.m.d', strtotime($comment->created_at)) }} {{ date('H:i', strtotime($comment->created_at)) }}
@endforeach @endif