feat: active nav highlighting & icon fixes

This commit is contained in:
Rico van Zelst
2023-11-16 11:29:32 +01:00
parent 7c05647079
commit ad49426825
4 changed files with 33 additions and 23 deletions

View File

@@ -19,6 +19,10 @@ class SummonerIconSeeder extends Seeder
$changeCount = 0;
foreach ($iconData as $icon) {
if ($icon['yearReleased'] === 0) {
continue;
}
$iconId = $icon['id'];
$iconExists = SummonerIcon::where('icon_id', $iconId)->first();