total()); } // Total Request public function total() { // // Data Request // $total = DataRequests::count(); // $total = DataRequests::where('status', 'Rejected')->count(); // $total = DataRequests::whereYear('created_at', '2023')->count(); // $total = DataRequests::whereMonth('created_at', '12')->count(); // // Agenda // $total = Agendas::count(); // $total = Agendas::whereYear('date', '2024')->count(); // $total = Agendas::whereYear('date', '2024')->whereMonth('date', '01')->count(); // // Guest Books // $total = AgendaGuestBooks::count(); // $total = AgendaGuestBooks::where('agenda_id', 2)->count(); // $total = Agendas::whereYear('date', '2024')->whereMonth('date', '01')->count(); $totalUser = User::count(); return compact('totalUser'); } }