/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $gameservers = Gameserver::all();
     return View::make('user/gameserver_list', ['gameservers' => $gameservers]);
 }