@extends('admin.partial.template-full') @section('section')

Report #{{$report->id}} - {{ucfirst($report->type)}}

Reported {{$report->created_at->diffForHumans()}} by @{{$report->reporter->username}}.

@if($report->status->media()->count()) @endif
@if($report->status->caption)

{{$report->status->media()->count() ? 'Caption' : 'Comment'}}: {{$report->status->caption}}

@endif

Like Count: {{$report->status->likes_count}}

Share Count: {{$report->status->reblogs_count}}

Timestamp: {{now()->parse($report->status->created_at)->format('r')}}

Original URL: {{$report->status->url()}}

Local URL: {{url('/i/web/post/' . $report->status->id)}}

@if($report->status->in_reply_to_id)

Parent Post: {{url('/i/web/post/' . $report->status->in_reply_to_id)}}

@endif
{{$report->reportedUser->username}} stats

Total Reports: {{App\Report::whereReportedProfileId($report->reportedUser->id)->count()}}

Total Warnings: {{App\AccountInterstitial::whereUserId($report->reportedUser->user_id)->count()}}

Status Count: {{$report->reportedUser->status_count}}

Follower Count: {{$report->reportedUser->followers_count}}

Joined: {{$report->reportedUser->created_at->diffForHumans(null, null, false)}}

@{{$report->reporter->username}} stats

Status Count: {{$report->reporter->status_count}}

Follower Count: {{$report->reporter->followers_count}}

Joined: {{$report->reporter->created_at->diffForHumans(null, null, false)}}

@endsection @push('scripts') @endpush