@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Reports

@foreach ($reports as $report) @endforeach
Users Reported Content Status View Content Action
@foreach ($report['user_ids'] as $user) @php $colors = ['bg-warning', 'bg-success', 'bg-danger', 'bg-primary', 'bg-info']; $randomColor = $colors[array_rand($colors)]; @endphp
{{ substr($user->username, 0, 1) }}
@endforeach
{{ ucfirst($report['comment_of'] ?? '') }} {{ ucfirst($report['type'] ?? '') }} {{$report['status'] == 1 ? 'Closed' : 'Open'}} @if ($report['type'] == 'classified') @elseif ($report['type'] == 'comment' && ($report['comment_of'] == 'response')) @elseif ($report['type'] == 'comment' && ($report['comment_of'] == 'post')) @elseif ($report['type'] == 'event') @elseif ($report['type'] == 'group') @elseif ($report['type'] == 'post') @elseif ($report['type'] == 'response') @elseif ($report['type'] == 'topic') @elseif ($report['type'] == 'user') @endif @if ($report['status'] == 0) @else Approved @endif
@include('partials.footer')
@include('global.footer-links')