/**
  * Show the match list page.
  *
  * @return Response
  */
 public function listMatches()
 {
     return view('match.list')->with('matches', Match::paginate(10));
 }