@extends('layouts.admin') @section('content')
@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif

{{ $title }}

Total: {{ $commentsList->total() }} comments
@forelse($commentsList as $comment) @empty @endforelse
ID User Comment Release Status Created Actions
#{{ $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 ? $comment->created_at->format('Y-m-d') : '—' }}
{{ $comment->created_at ? $comment->created_at->format('H:i:s') : '' }}
No comments found.
{{ $commentsList->links() }}

Confirm Deletion

Are you sure you want to delete this comment?

This action cannot be undone.

@csrf
{{-- Styles moved to resources/css/csp-safe.css --}} {{-- Scripts moved to resources/js/csp-safe.js --}} @endsection