@extends('admin.layouts.home') @section('title', 'Post Reports') @section('content')
| ID | Post | Reported By | Reason | Status | Date | Actions |
|---|---|---|---|---|---|---|
| {{ $report->id }} |
@if($report->post)
@if($report->post->media && count($report->post->media) > 0)
@else
Post not found or deleted
@endif
{{ Str::limit($report->post->text, 30) }}
ID: {{ $report->post_id }} By: {{ $report->post->user->name ?? 'Unknown' }} |
@if($report->reportingUser)
{{ $report->reportingUser->name }}
ID: {{ $report->user_id }} |
{{ $report->reason }} | @if($report->status == 'pending') Pending @elseif($report->status == 'resolved') Resolved @elseif($report->status == 'dismissed') Dismissed @endif | {{ $report->created_at->format('M d, Y H:i') }} | |
| No reports found | ||||||