@extends('layouts.master') @section('title','Users reports') @section('content')
| SL No | Reported By | Reported User | Type | Details | Status | Reported At | Warning message | @foreach($reports as $key=>$report)
|---|---|---|---|---|---|---|---|
| {{ ($key+1) }} | {{ $report->ReportedBy->name }} | {{ $report->ReportedUser->name }} | {{ $report->ReportType->name }} | {{ $report->description }} | {{ ($report->is_resolved)?'Resolved':'Not resolved' }} | {{ date('d M Y h:i:s a',strtotime($report->created_at)) }} | @if($report->Warning) {{ $report->Warning->message }} @else @endif |