From 87e3ec322de7bbce6f7279802cbff2ecb3820492 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Sat, 8 Nov 2025 17:16:21 -0600 Subject: [PATCH] Quickfix dealing with a student incorrectly identifying as a doubler when not entered for seating in one audition but only advancement --- app/Models/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 2b8c63d..1977b24 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -43,7 +43,7 @@ class Entry extends Model // If we're looking for seating rank, return the rank from the list of ranked entries if ($type === 'seating') { - return $rankedEntries->where('id', $this->id)->first()->seatingRank; + return $rankedEntries->where('id', $this->id)->first()->seatingRank ?? 'No Rank'; } return $rankedEntries->where('id', $this->id)->first()->advancementRank;