find($request->input('entry_id')); $judges = $entry->audition->room->judges; $scoring_guide = $entry->audition->scoringGuide; $subscores = $entry->audition->scoringGuide->subscores->sortBy('display_order'); if (!$entry) { return redirect()->route('tabulation.chooseEntry')->with('error','Entry not found'); } return view('tabulation.entry_score_sheet', compact('entry','judges','scoring_guide','subscores')); } }