@extends('layouts.adminlayout') @section('content')
@include('admin.adminnavbar')

Manage Reported Ads

All Reported Issues
@foreach ($reports as $report)
Report ID: #{{ $report->id }}
{{ $report->ad->title }}
Reported By: {{ $report->reporter->name }} ({{ $report->reporter->email }})
Ad Owner: {{ $report->ad->user->name }} ({{ $report->ad->user->email }})
Reason: {{ $report->reason }}
Description: {{ $report->description }}
Reported on: {{ $report->created_at->format('d M Y, h:i A') }}
@endforeach {{ $reports->links('pagination::bootstrap-5') }} @if ('success') @endif
@endsection @section('scripts') @endsection