Report Information
Reason: {{ $report->getReasonText() }}
Status: {{ $report->getStatusText() }}
Reported Date: {{ $report->created_at->format('Y-m-d H:i:s') }}
@if($report->resolved_at) Resolved Date: {{ $report->resolved_at->format('Y-m-d H:i:s') }}
@endif
User Agent: {{ Str::limit($report->user_agent, 50) }}
@if($report->resolvedByAdmin) Resolved By: {{ $report->resolvedByAdmin->name }}
@endif
Report Details:
Admin Notes:
Reported User Profile
{{ $report->reportedUser->name }}
Username: @{{ $report->reportedUser->username }}
Email: {{ $report->reportedUser->email }}
Phone: {{ $report->reportedUser->phone ?? 'Not provided' }}
Joined: {{ $report->reportedUser->created_at->format('Y-m-d') }}
Profile Visibility: {{ ucfirst($report->reportedUser->profile_visibility) }}
@if($report->reportedUser->banned_at)Status: Banned since {{ $report->reportedUser->banned_at->format('Y-m-d H:i:s') }}
@elseStatus: Active
@endifUser's Recent Shortlinks
| ID | URL | Label | Clicks | Status | Created | Actions |
|---|---|---|---|---|---|---|
| {{ $shortlink->id }} | {{ Str::limit($shortlink->original, 50) }} | {{ $shortlink->custom_label ?? '-' }} | {{ number_format($shortlink->click_logs_count) }} | {{ $shortlink->is_active ? 'Active' : 'Inactive' }} | {{ $shortlink->created_at->format('Y-m-d') }} |
Reporter Information
Name: {{ $report->reporterUser->name }}
Username: @{{ $report->reporterUser->username }}
Email: {{ $report->reporterUser->email }}
Joined: {{ $report->reporterUser->created_at->format('Y-m-d') }}
@elseGuest Reporter
@if($report->reporter_email)Email: {{ $report->reporter_email }}
@endifThis report was submitted by a guest user.