/** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show($slug, $id) { $idMidia = collect(Midia::where('id_registro_tabela', $id)->where('id_tipo_midia', $this->tipo_midia)->first())->first(); if (!empty($idMidia)) { $dados['imagens'] = Midia::find($idMidia)->multimidia()->where('id_midia', $idMidia)->get(); } else { $dados['imagens'] = ''; } $dados['destacada'] = Midia::where('id_registro_tabela', $id)->where('id_tipo_midia', $this->tipo_midia)->first(); $dados['blog'] = Noticia::where('slug', $slug)->first(); return view('site/noticias-page', $dados); }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Noticia::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, 'categoria_id' => $this->categoria_id, 'created_by' => $this->created_by, 'created_at' => $this->created_at, 'udated_by' => $this->udated_by, 'updated_at' => $this->updated_at]); $query->andFilterWhere(['like', 'titulo', $this->titulo])->andFilterWhere(['like', 'detalle', $this->detalle]); return $dataProvider; }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Noticia::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_noticia' => $this->id_noticia, 'importante' => $this->importante, 'fecha' => $this->fecha]); $query->andFilterWhere(['like', 'titulo', $this->titulo])->andFilterWhere(['like', 'descripcion', $this->descripcion]); return $dataProvider; }
/** * Bootstrap any application services. * * @return void */ public function boot() { if (collect(Analytics::find(1))->contains(1)) { view()->share('analytics', Analytics::find(1)); } if (collect(Configuracao::find(1))->contains(1)) { view()->share('confsite', Configuracao::find(1)); } if (collect(Comentarios::where('id_status_comentario', 1)->get())->count()) { view()->share('comments', collect(Comentarios::where('id_status_comentario', 1)->get())->count()); } view()->share('sobre', Sobres::findOrFail(1)); if (Request::is('blog') or Request::is('blog/*')) { view()->share('categorias', Categoria::where('id_tipo_categoria', 3)->get()); view()->share('ultimas', collect(Noticia::todas())->take(4)); } if (Request::is('admin') or Request::is('admin/*')) { view()->share('ajuda', Helps::all()); } }
/** * Finds the Noticia model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Noticia the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Noticia::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
/** * @return \yii\db\ActiveQuery */ public function getNoticia() { return $this->hasOne(Noticia::className(), ['id' => 'noticia_id']); }
/** * Finds the Noticia model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @param integer $created_by * @return Noticia the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id, $created_by) { if (($model = Noticia::findOne(['id' => $id, 'created_by' => $created_by])) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
public function updateStatus($status, $id) { try { $dado = Noticia::findOrFail($id); $dado->status = $status; $dado->save(); session()->flash('flash_message', 'Status alterado com sucesso!'); } catch (\Exception $e) { LogR::exception($dado, $e); session()->flash('flash_message', 'Ops!! Ocorreu algum problema!. ' . $e->getMessage()); } return Redirect::back(); }
/** * @return \yii\db\ActiveQuery */ public function getNoticias() { return $this->hasMany(Noticia::className(), ['categoria_id' => 'id']); }
public function actionNoticia($slug) { $categorias = Categoria::find()->all(); $noticia = Noticia::find("seo_slug = :slug", [":slug" => $slug])->one(); $comentario = new Comentario(["scenario" => "comentario"]); if ($comentario->load(Yii::$app->request->post())) { $comentario->estado = '0'; $comentario->noticia_id = $noticia->id; $comentario->fecha = new Expression("NOW()"); $comentario->correo = Security::mcrypt($comentario->correo); if ($comentario->save()) { Yii::$app->session->setFlash('success', 'Gracias por su comentario'); } else { Yii::$app->session->setFlash('error', 'Su comentario no pudo ser registrado'); } return $this->redirect(["/noticia/{$slug}"]); } return $this->render('noticia', ['comentario' => $comentario, 'categorias' => $categorias, 'noticia' => $noticia]); }