@extends('layouts.app') @section('titlePage', 'Manage Page') @section('content') @php $brand_color = $dataConfigs['brand'] ?? 'default'; @endphp
@if(session()->has('message.level')) @endif

Staffs

{{$countStaff ?? 0}}

+2.31%last month

Students

{{$countStudent ?? 0}}

+2.31%last month

Total Questions

{{$countQuestion ?? 0}}

+2.31%

Total Test

{{$countTest ?? 0}}

+2.31%last month

Material Chart
Staff Status
  • Active

    {{$countStaffActive ?? 0}}

  • Deactive

    {{$countStaffDeactivated ?? 0}}

Students Status
  • Invited

    {{$countStudentInvited ?? 0}}

  • Joined

    {{$countStudentJoined ?? 0}}

  • Deactivated

    {{$countStudentDeactivated ?? 0}}

Test Status
  • Total Created

    {{$countTest ?? 0}}

  • Total Attempted

    {{count($countTestAttempted) ?? 0}}

Test Performance
@foreach ($latestResult as $value) @endforeach
Category Title Name USN Campus Degree Department Batch Section Maximum Marks Student score Remarks Status
{{ $value->test->category->category ?? 'None' }} {{ $value->test->title ?? null }} {{ $value->student->fullname ?? null }} {{ $value->student->registration_number ?? null }} {{ $value->student->campus->campus_title ?? null }} {{ $value->student->degree->deg_spc_title ?? null }} {{ $value->student->department->d_name ?? null }} {{ $value->student->batch->batch_title ?? null }} {{ $value->student->section->title ?? null }} {{ $value->total_marks }} {{ $value->marks_obtained ?? 0}} {{ !empty($remarksMap[$value->test_id.'_'.$value->student_id]) ? $remarksMap[$value->test_id.'_'.$value->student_id]->remarks : '' }} Attempted
@endsection @section('script') @php $dat = user()->client_end_date; $date2=date_create(user()->client_end_date); $date1=date_create(date("Y-m-d")); $diff=date_diff($date1,$date2); $days = $diff->format("%a"); @endphp @if (is_client()) @if($days < 20) @endif @endif @php $colorCode1 = 'var(--primary-bg-color)'; $colorCode2 = 'var(--secondary)';; $colorCode3 = ($brand_color == 'default') ? '#FFC0CB' : '#004225'; $colorCode4 = ($brand_color == 'default') ? '#00FF00' : '#800000'; @endphp @endsection