Ejemplo n.º 1
0
 /**
  * Creates a new Solicitud model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Solicitud();
     $searchModel = new SolicitudSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id_solicitud]);
     } else {
         return $this->render('create', ['model' => $model, 'searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
     }
 }
Ejemplo n.º 2
0
 /**
  * Lists all Solicitud models.
  * @return mixed
  */
 public function actionIndex()
 {
     $searchModel = new SolicitudSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
 }