@props(['comment'])
  • {{ $comment->user->name }}
    {{ formatDate($comment->created_at) }}
    @if(Auth::check())
    @if($comment->depth < config('app.commentsNestedLevel')) @lang('Reply') @endif @if(Auth::user()->name == $comment->user->name) @lang('Delete') @endif
    @endif

    {{ $comment->body }}