diff --git a/app/Services/AuditionCacheService.php b/app/Services/AuditionCacheService.php index 3c7b261..bbe22c9 100644 --- a/app/Services/AuditionCacheService.php +++ b/app/Services/AuditionCacheService.php @@ -67,7 +67,7 @@ class AuditionCacheService $cacheKey, now()->addHour(), function () { - return Audition::orderBy('score_order')->get()->filter(fn ($audition) => $audition->hasFlag('seats_published')); + return Audition::with('flags')->orderBy('score_order')->get()->filter(fn ($audition) => $audition->hasFlag('seats_published')); }); }