App\Http\Controllers\MatchesController::show PHP Method

show() public method

public show ( $match_id )
    public function show($match_id)
    {
        $match = Match::findOrFail($match_id);
        $match = json_item($match, new MatchTransformer());
        $full = Request::input('full', false);
        return view('multiplayer.match', compact('match', 'full'));
    }
MatchesController