public function collectData()
    {
        $registrations = User::where('created_at', '<', now())
            ->where('created_at', '>', now()->subDays(30))
            ->get()