@extends('admin.layouts.home') @section('title', 'Reported Groups') @section('content')
| ID | Group | Reported By | Reason | Reported On | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $report->id }} |
{{ $report->group->name ?? 'Unknown Group' }}
{{ ucfirst($report->group->type) }}
|
{{ $report->user->name ?? 'Unknown User' }} |
{{ $report->reason }}
{{ Str::limit($report->details, 100) }}
@if(strlen($report->details) > 100)
(Read more)
@endif
|
{{ $report->created_at->format('D M-Y H:i') }} | {{ ucfirst($report->status) }} |
@if($report->status === 'pending')
{{-- --}}
@endif
|