@php
$monthName = date('F', mktime(0, 0, 0, $month, 10));
@endphp
| Account Type |
Category |
Registered ({{$monthName}}) |
Active In CMS ({{$monthName}}) |
Active In OPS ({{$monthName}}) |
InActive In CMS ({{$monthName}}) |
InActive In OPS ({{$monthName}}) |
Active Till {{$prev_year}} |
Active In {{$cur_year}} |
InActive Till {{$prev_year}} |
InActive In {{$cur_year}} |
@foreach($arr as $reportdata)
@php
$count = count($reportdata['details']);
@endphp
| {{$reportdata['title']}} |
@foreach($reportdata['details'] as $data)
| {{$data['title']}} |
{{$data['monthly_count'] ?? 0}} |
{{$data['monthly_active_cms'] ?? 0}} |
{{$data['monthly_active_ops'] ?? 0}} |
{{$data['monthly_inactive_cms'] ?? 0}} |
{{$data['monthly_inactive_ops'] ?? 0}} |
{{$data['active_prev_years'] ?? 0}} |
{{$data['active_cur_year'] ?? 0}} |
{{$data['inactive_prev_years'] ?? 0}} |
{{$data['inactive_cur_year'] ?? 0}} |
@endforeach
@endforeach
|