/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     $tipos = TiposTratamientos::all();
     return View::make('tratamientos.tipos')->with('tipos', $tipos);
 }