Rewrite tabulation #14

Merged
okorpheus merged 43 commits from rewrite-tabulation into master 2024-07-14 05:36:29 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit b2fdfc34a3 - Show all commits

View File

@ -39,7 +39,6 @@ class SeatAuditionController extends Controller
public function __invoke(Request $request, Audition $audition)
{
$doublers = $this->doublerService->doublersForEvent($audition->event);
$entryData = [];
$entries = $this->ranker->rank('seating', $audition);
$entries->load('student.school');
@ -63,6 +62,6 @@ class SeatAuditionController extends Controller
];
}
return view('tabulation.auditionSeating', compact('entryData', 'audition', 'doublers'));
return view('tabulation.auditionSeating', compact('entryData', 'audition'));
}
}