count(); return view('dashboard_student', compact('topicCountt')); } public function dashboardTeacher() { $topicCount = DB::table('projects')->count(); return view('dashboard_teacher', compact('topicCount')); } }