@extends('layouts.admin') @section('content')
Total: {{ $commentsList->total() }} comments ID User Comment Release Status Created Actions @forelse($commentsList as $comment) #{{ $comment->id }}
{{ $comment->username }}
@if($comment->host)
{{ $comment->host }}
@endif
{{ Str::limit($comment->text, 150) }}
@if($comment->guid) View Release @else @endif
@if($comment->isvisible) Visible @else Hidden @endif @if($comment->shared) Shared @endif @if($comment->issynced) Synced @endif
{{ $comment->created_at ? formatDate($comment->created_at) : '—' }}
{{ $comment->created_at ? $comment->created_at->format('H:i:s') : '' }}
@empty No comments found. @endforelse
@endsection