where('deleted_at', '<', now()->subDays(config('nntmux.purge_inactive_users_days'))) ->get() ->each(function ($user) { $user->forceDelete(); // Permanently delete the user }); } }