@auth
@csrf
@else @endauth {{ $comment->votes }} @auth
@csrf
@else @endauth
u/{{ $comment->user->name }} • {{ $comment->created_at->diffForHumans() }}

{{ $comment->content }}

@auth
@if($comment->user_id === auth()->id())
@csrf @method('DELETE')
@endif
@endauth
@foreach($comment->replies as $reply) @include('partials.comment', ['comment' => $reply, 'depth' => $depth + 1]) @endforeach
@if($depth === 0) @endif