Dashboard
{{-- --}}
Welcome To Dashboard {{session('usertype')}}
"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 detailsAttended Classes
{{ $atendedclasses ?? '0'}}
View detailsTotal Purchased Classes
{{$classes_purchased ?? '0'}}
View detailsNon-Attended Classes
{{$non_atendedclasses ?? '0'}}
View detailsUpcoming Classes
-
25
Tue12:00am - 03:30pm
Meeting for campaign with sales team -
20
Wed02:00pm - 03:45pm
Adding a new event with attachments -
17
Wed04:30pm - 07:15pm
Create new project Bundling Product -
12
Tue10:30am - 01:15pm
Weekly closed sales won checking with sales team
-
@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
-
25
Tue12:00am - 03:30pm
Meeting for campaign with sales team -
20
Wed02:00pm - 03:45pm
Adding a new event with attachments -
17
Wed04:30pm - 07:15pm
Create new project Bundling Product -
12
Tue10:30am - 01:15pm
Weekly closed sales won checking with sales team
-
@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
-
25
Tuetxn-1234657890-5012450-5
Purchased 4 Classes For Maths -
20
Wedtxn-1234657890-5012450-5
Purchased 4 Classes For Maths -
17
Wedtxn-1234657890-5012450-5
Purchased 4 Classes For Maths -
12
Tuetxn-1234657890-5012450-5
Purchased 4 Classes For Maths
-
@foreach ($latest_payments as $payment)
-
{{ $payment->payment_date->format('d') }}
{{ $payment->payment_date->format('M') }}{{ $payment->transaction_id }}
Purchased {{ $payment->classes_purchased }} Classes For {{ $payment->name }}
@endforeach
{{--
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)
@php
$colorIndex = ($colorIndex + 1) % count($colorClasses);
@endphp
@endforeach
{{ $subject['subject_name'] }}
{{ number_format($subject['percentage'], 2) }}%
{{-- Show All --}}