/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $todopartidos = Partido::all();
     return View::make('partido.listar')->with('todopartidos', $todopartidos);
 }