Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  * GET /games
  *
  * @return Response
  */
 public function index()
 {
     $games = Game::where('open', '=', 1)->get();
     return $games;
 }
Ejemplo n.º 2
0
 public function index()
 {
     $availableGames = Game::where('open', '=', 1)->get();
     return View::make('pages.lobby.index')->withSectionTitle('Lobby')->withAvailableGames($availableGames);
 }