Champion::orderBy('name')->get()); $skins = Cache::remember('sitemap_championSkinsCache', $twentyHoursInSeconds, fn () => ChampionSkin::orderBy('skin_name')->get()); $icons = Cache::remember('sitemap_iconsCache', $twentyHoursInSeconds, fn () => SummonerIcon::orderBy('title')->get()); $posts = Sheets::all()->sortByDesc('date'); return view('sitemap.index', [ 'champions' => $champions, 'skins' => $skins, 'icons' => $icons, 'posts' => $posts, ]); } }