@extends('admin.layouts.grid') @section('section', translate('Reports')) @section('title', translate('Reported Item Comments')) @section('container', 'container-max-xxl') @section('content')
@if ($itemCommentReports->count() > 0)
@foreach ($itemCommentReports as $itemCommentReport) @endforeach
{{ translate('ID') }} {{ translate('Comment ID') }} {{ translate('Reported By') }} {{ translate('Reason') }} {{ translate('Date') }}
{{ $itemCommentReport->id }} #{{ $itemCommentReport->commentReply->comment->id }} {{ $itemCommentReport->user->username }} {{ dateFormat($itemCommentReport->created_at) }}
@else @include('admin.partials.empty', ['empty_classes' => 'empty-lg']) @endif
{{ $itemCommentReports->links() }} @endsection