@extends('admin.layouts.home') @section('title', 'User Reports') @section('content')
| ID | Reported User | Reported By | Reason | Status | Date | Actions |
|---|---|---|---|---|---|---|
| {{ $report->id }} |
@if($report->reportedUser)
{{ $report->reportedUser->name }}
ID: {{ $report->report_user_id }} |
@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 | ||||||