mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 06:30:07 +01:00
admin: increase recent user showing to 10.
This commit is contained in:
parent
d77dc5f1e0
commit
6c1809c20b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ $mod_messages = ModMessage::with('user')
|
||||||
|
|
||||||
$most_recent_users = User::select('id', 'username', 'created_at', 'ip')
|
$most_recent_users = User::select('id', 'username', 'created_at', 'ip')
|
||||||
->orderBy('id', 'desc')
|
->orderBy('id', 'desc')
|
||||||
->limit(7)
|
->limit(10)
|
||||||
->get();
|
->get();
|
||||||
|
|
||||||
function getRecentadmin($count = 5) {
|
function getRecentadmin($count = 5) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue