Dashboard

"Education is the key to unlocking a world of possibilities, and with this online tuition app, we're not just gaining knowledge; we're gaining the future. Welcome to a journey of learning, where every lesson brings us closer to our dreams. Together, let's explore, discover, and excel. Here's to the start of an exciting educational adventure!"

{{-- Upgrade Account! --}}

Subjects Enrolled

{{count($subjects_enrolled) ?? '0'}}

View details

Attended Classes

{{ $atendedclasses ?? '0'}}

View details

Total Purchased Classes

{{$classes_purchased ?? '0'}}

View details

Non-Attended Classes

{{$non_atendedclasses ?? '0'}}

View details

Upcoming Classes

{{--
Showing4 of 125 Results
--}}
    @foreach ($upcomingClasses as $class)
  • {{ $class->start_time->format('d') }}
    {{ $class->start_time->format('M') }}
    {{ $class->start_time->format('h:iA') }} - {{ $class->start_time->addMinutes($class->duration)->format('h:iA') }}
    {{ $class->topic_name }}
  • @endforeach
{{--
Showing {{ count($upcomingClasses) }} of {{ $totalClassesCount }} Results
--}}

Upcoming Tests/Quizes

{{--
Showing4 of 125 Results
--}}
    @foreach ($upcomingQuizes as $quiz)
  • {{ $quiz->test_start_date->format('d') }}
    {{ $quiz->test_start_date->format('M') }}
    {{ $quiz->test_start_date->format('Y/m/d h:i:s A') }} - {{ $quiz->test_end_date->format('Y/m/d h:i:s A') }}
    {{ $quiz->name }}
  • @endforeach
{{-- Showing {{ $upcomingQuizes->count() }} of {{ $totalQuizes }} Results --}}

Latest Purchases

{{--
Showing4 of 125 Results
--}}
{{--
Showing {{ $latest_payments->count() }} of 125 Results
--}}

Classes By Subjects

Total Classes Attended

{{$totalclassesTaken ?? "0"}}

{{--

15.72 % vs. previous month

--}}
{{--
--}}
@php $colorClasses = ['primary', 'info', 'success', 'warning', 'danger']; $colorIndex = 0; @endphp @foreach ($subjectData as $subject)
{{-- Cycle the color index --}} @php $colorIndex = ($colorIndex + 1) % count($colorClasses); @endphp @endforeach
{{--

English

24.58%

Maths

17.51%

Computer

23.05%

Physics

12.22%

Chemistry

17.58%

--}}
@php $colorClasses = ['primary', 'info', 'success', 'warning', 'danger']; $colorIndex = 0; @endphp @foreach ($subjectData as $subject)

{{ $subject['subject_name'] }}

{{ number_format($subject['percentage'], 2) }}%

@php $colorIndex = ($colorIndex + 1) % count($colorClasses); @endphp @endforeach
{{-- Show All --}}
Test/Quiz Total Marks Obtained
Test 1 50 2
Test 2 86 22
Test 3 64 18
Test 4 53 14
Test 5 33 12
Test 6 20 10
Test 7 10 07
@endsection