@extends('layouts.app') @section('content')
Reports to moderate
@if (count($reports)) @foreach ($reports as $report) @if ($report->contentExists()) @else @endif @endforeach
Reporter Type Excerpt
{{ '@' . $report->user->name }} {{ $report->isPost() ? 'Post' : 'Topic' }}"{{ $report->isPost() ? ((strlen($report->getPostBody($report->content_id)) >= 25) ? str_limit($report->getPostBody($report->content_id), 24) . '…' : $report->getPostBody($report->content_id)) : $report->getTopicSlug() }}" LinkUnavailable Unavailable

You may delete posts or topics that have an excerpt and link of 'Unavailable'.

@else

Good News! There is nothing to moderate.

@endif
Admin contacts
@if (Auth::user()->role === 'admin')

You have the power!
Feel free to head over to the admin dashboard and remove any users that are abusing the system.

@else @if (count($admins))

Contact an administrator if you feel that a user is abusing the reporting system:

@foreach ($admins as $admin)

{{ $admin->name }}

@endforeach @else

Contact the entity that installed this applicationm, telling them that there are no administrative accounts.

@endif @endif
@endsection