@extends('layouts.admin') @section('content')
| id | Course Name | Group Name | Participants count (student groups) | Participants count (parent groups) |
|---|---|---|---|---|
| {{++$count}} | @foreach ( $course->teachingTeam->coachingTeachers as $teacher){{$course->has_label ? ' ( '.$course->label.' ) ':''}} {{$course->course->cname. '_' . ' ( '.$course->course->level->lshort_name.' )'}} | @endforeach{{$group->groupName->gname}} | {{$group->student_whatsapp_group_count}} @if (round(($group->student_whatsapp_group_count / 240 ) * 100 ,1) <= 50) {{round(($group->student_whatsapp_group_count / 240 ) * 100 ,1)}}% full @elseif( round(($group->student_whatsapp_group_count / 240 ) * 100 ,1) <= 90 && round(($group->student_whatsapp_group_count / 240 ) * 100 ,1) >= 51) {{round(($group->student_whatsapp_group_count / 240 ) * 100 ,1)}}% full @else {{round(($group->student_whatsapp_group_count / 240 ) * 100 ,1)}}% full @endif | {{$group->parent_whatsapp_group_count}} @if (round(($group->parent_whatsapp_group_count / 240 ) * 100 ,1) <= 50) {{round(($group->parent_whatsapp_group_count / 240 ) * 100 ,1)}}% full @elseif( round(($group->parent_whatsapp_group_count / 240 ) * 100 ,1) <= 90 && round(($group->parent_whatsapp_group_count / 240 ) * 100 ,1) >= 51) {{round(($group->parent_whatsapp_group_count / 240 ) * 100 ,1)}}% full @else {{round(($group->parent_whatsapp_group_count / 240 ) * 100 ,1)}}% full @endif |