public function AdminFotos()
 {
     //Lo de las visitas hay que arreglarlo. No tiene que mostrar visitas esta view y si no las pongo me tira error
     $visitas = new Visitas();
     $cant_visitas = count($visitas->All());
     //Fotos Portfolio
     $buscarArchivos = new Archivo();
     $portfolio_1 = $buscarArchivos->buscarArchivosEnCarpeta("assets/img/portfolio/Producto_1/");
     return View::make('Admin.fotosCajaUno', array('cant_visitas' => $cant_visitas, 'todas_visitas' => $visitas->Cant_Mes(15), 'portfolio_1' => $portfolio_1));
 }
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return Visitas the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = Visitas::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }