/**
  * Show edit page for a round.
  *
  * @param $roundId
  * @return \Illuminate\View\View
  */
 public function edit($roundId)
 {
     $courses = $this->course->listAllCourses();
     $teeTypes = $this->teeType->listAllTeeTypes();
     $round = $this->round->getRound($roundId);
     return view('rounds.edit', compact('round', 'courses', 'teeTypes'));
 }