diff --git a/resources/views/settings/reports.blade.php b/resources/views/settings/reports.blade.php new file mode 100644 index 000000000..c64d7c8f4 --- /dev/null +++ b/resources/views/settings/reports.blade.php @@ -0,0 +1,38 @@ +@extends('settings.template') + +@section('section') + +
+

Reports

+
+
+

A list of reports you have made.

+ + + + + + + + + + + @foreach($reports as $report) + + + + + @if(!$report->admin_seen) + + @else + + @endif + + + @endforeach + +
IDTypeReportedStatusCreated
{{$report->id}}{{$report->type}}{{str_limit($report->reported()->url(), 30)}}UnresolvedResolved{{$report->created_at->diffForHumans(null, true, true)}}
+
+ {{$reports->links()}} +
+@endsection \ No newline at end of file