@extends('admin.layouts.app') @section('title', 'Counters') @section('content')

Counters Listing

Clear
@if ($counters->isEmpty())

No counters found.

@else @foreach ($counters as $index => $counter) @endforeach
Sr No User Email {{ $isMonthly ? 'Month' : 'Date' }} Resolved
{{ $index + 1 }} {{ $counter->user_name ?? ($counter->title . ' ' . $counter->name) }} {{ $counter->email }} {{ $isMonthly ? $counter->month : $counter->date }} {{ $counter->resolved }}
@endif
@endsection @section('scripts') @endsection