From 6c1809c20b7bdbeab1ca996be2d7e5fa2238d089 Mon Sep 17 00:00:00 2001 From: Floorb <132411956+Neetpone@users.noreply.github.com> Date: Tue, 29 Aug 2023 03:44:40 -0400 Subject: [PATCH] admin: increase recent user showing to 10. --- public/admin/dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/admin/dashboard.php b/public/admin/dashboard.php index df17009..120747c 100644 --- a/public/admin/dashboard.php +++ b/public/admin/dashboard.php @@ -70,7 +70,7 @@ $mod_messages = ModMessage::with('user') $most_recent_users = User::select('id', 'username', 'created_at', 'ip') ->orderBy('id', 'desc') - ->limit(7) + ->limit(10) ->get(); function getRecentadmin($count = 5) {