Ejemplo n.º 1
0
 /**
  * Show a match
  * 
  * @param  int $id The id of the match
  * @return void
  */
 public function show($id)
 {
     $match = Match::findOrFail($id);
     $match->access_counter++;
     $match->save();
     $this->title($match->leftTeam->title . ' ' . trans('matches::vs') . ' ' . $match->rightTeam->title);
     $this->pageView('matches::show', compact('match'));
 }