• {{ $comment->user->name }} @if(Auth::check() && Auth::user()->name == $comment->user->name)
    {{ csrf_field() }} {{ method_field('DELETE') }}
    @endif
    @if(Auth::check() && $level < config('app.commentsNestedLevel')) /@lang('Reply')
    {{ csrf_field() }}
    @endif

    {{ $comment->body }}

    @if(Auth::check() && Auth::user()->name == $comment->user->name)
    {{ csrf_field() }}
    @endif
    @if($comment->relationLoaded('allRepliesWithOwner')) @php $level++; @endphp @endif