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;