function getGames() { return view('light.menu', ['games' => Game::getAll()]); }
function getGames($mobile) { return view($mobile . 'games.index', ['games' => Game::getAll()]); }
function getGames() { return response()->json(Game::getAll()); }