@extends('layout.default') @section('content') @php $students_count = \App\Models\User::where('role','student')->count(); $teachers_count = \App\Models\User::where('role','teacher')->count(); $schools_count = \App\Models\User::where('role','school')->count(); $tutors_count = \App\Models\User::where('role','tutor')->count(); $quiz_count = \App\Models\Quiz::count(); $videos_count = \App\Models\Video::count(); $school_students_count = \App\Models\User::join('students','students.user_id','users.id')->where('role','student')->whereIn('students.type',['Teacher','School'])->count(); $ind_students_count = \App\Models\User::join('students','students.user_id','users.id')->where('role','student')->where('students.is_individual',1)->count(); $new_reg_schools = \App\Models\User::join('schools','schools.user_id','users.id')->where('users.role','school')->where('schools.status',0)->get(); @endphp
{{ $schools_count }} Registered Schools
{{ $teachers_count }} Registered Teachers
{{ $tutors_count }} Registered Tutors
{{ $students_count }} Total Students
{{ $ind_students_count }} Individual Students
{{$quiz_count}} Total Quizzes
{{$videos_count}} Total Videos
10000 School Enquiries
Monthly Sales Your Monthly Sales Chart
+57
Weekly Sales Your Weekly Sales Chart
+94
Daily Sales Your Daily Sales Chart
+28
$10000
Payment recieved
AQA
Most Subscribed Curriculum
Sales Stats
50% Increased for FY20
Alex - 200 Points Top Student Most Points Earned
AQA - 10 Subscriptions Most subscribed Syllabus
Chemistry - 12 Subscriptions Most subscribed Subject
{{$analytics_seven_days}}
Viewers in last 7 days
{{$analytics_six_months}}
Viewers in last 6 months

Country Chart

Curriculam Chart

New Institutions More than 10+ new institutions

Institution Institution Type Contact Info Payment Date Action
St Marylebone School info@stmarylebone.com
School 9876543210 $49 Paid 04-Feb-2021 Approve
@endsection @section('scripts') @endsection