public function destroy($id)
 {
     $departamentos = Departamento::find($id);
     $departamentos->delete();
     Session::flash('message', 'El ' . $departamentos->nombre . ' fue eliminado');
     return redirect()->route('Administrador.departamentos.index');
 }
 /**
  * Updates an existing Usuario model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id
  * @return mixed
  */
 public function actionUpdate($id)
 {
     $departamento = ArrayHelper::map(Departamento::find()->all(), 'id', 'nome');
     $model = $this->findModel($id);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('update', ['model' => $model, 'departamento_lista' => $departamento]);
     }
 }
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Departamento::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'nome', $this->nome]);
     return $dataProvider;
 }
 public function show($id)
 {
     $departamentos = Departamento::find($id);
     //dd($Campus);
     if ($departamentos) {
         $data = array(array('nombre', 'descripcion', 'facultad_id'), array($departamentos->nombre, $departamentos->descripcion, $departamentos->facultades->nombre));
         Excel::create('Departamentos' . $departamentos->nombre, function ($excel) use($data) {
             $excel->sheet('Sheetname', function ($sheet) use($data) {
                 $sheet->fromArray($data);
             });
         })->download('csv');
     } else {
         abort('404');
     }
 }
 /**
  * Find Departamento by given id
  *
  * @param int $id
  *
  * @return \Illuminate\Support\Collection|null|static|Departamento
  */
 public function findDepartamentoById($id)
 {
     return Departamento::find($id);
 }