@extends('layouts.app') @section('content')
Status statistics

Total Reports

{{ $reviews->count() }}

Approved Reports

{{ $approved->count() }}

Declined Reports

{{ $disapproved->count() }}

@if(count($reviews) > 0) @php $i = 0; @endphp @foreach($reviews as $rev) @endforeach @endif
ID Reports Date Status Actions
{{ ++$i }} {{ ucfirst($rev->victim_or_confidential) }} {{ $rev->date_of_incident }} {{ ucfirst($rev->status) }}
@endsection @section('script') @endsection