Skip to content

Commit

Permalink
update hall of fames order
Browse files Browse the repository at this point in the history
  • Loading branch information
summerblue committed Aug 10, 2016
1 parent d2b86ec commit 43a66b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/PagesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function sitemap()

public function hallOfFames()
{
$users = User::isRole('HallOfFame')->get();
$users = User::isRole('HallOfFame')->orderBy('last_actived_at', 'desc')->get();
return view('pages.hall_of_fame', compact('users'));
}
}

0 comments on commit 43a66b3

Please sign in to comment.