public function index()
 {
     $userCount = User::count();
     $pollCount = Poll::count();
     return view('admin.index', compact('userCount', 'pollCount'));
 }