<?php namespace App\Http\Controllers;
use App\Models\User;
use Response;
use App\Models\Oeuvre;
class GameController extends Controller {
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
//
}
* Show the application dashboard to the user.
* @return Response
public function index()
$res = User::referents()->get();
return view('home',['referent' => $res]);
* Show referent games
* @param String $id
public function showReferentGames($id)
return view('referent_games', ['referent' => $id]);
* Show one referent game
* @param String $idGame
public function showOneReferentGame($id, $idGame)
return view('one_referent_game', ['referent' => $id, 'game' => $idGame]);