mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
fix: reverse summoner icon sorting
when you check out the icons, most of the time you probably are looking for recent ones not ones from 2009.
This commit is contained in:
@@ -13,7 +13,7 @@ class SummonerIconController extends Controller
|
|||||||
{
|
{
|
||||||
$icons = QueryBuilder::for(SummonerIcon::class)
|
$icons = QueryBuilder::for(SummonerIcon::class)
|
||||||
->allowedFilters('title')
|
->allowedFilters('title')
|
||||||
->defaultSort('icon_id')
|
->defaultSort('-icon_id')
|
||||||
->paginate(72)
|
->paginate(72)
|
||||||
->appends(request()->query());
|
->appends(request()->query());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user