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