public function AddCase()
 {
     $case = new Cases();
     $case->fill(Input::except(['_token']));
     $case->save();
     return $case;
 }
示例#2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Cases::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, 'startDate' => $this->startDate, 'dueDate' => $this->dueDate, 'urgent' => $this->urgent, 'billingClientId' => $this->billingClientId, 'ultimatrClientId' => $this->ultimatrClientId, 'assignToId' => $this->assignToId, 'status' => $this->status, 'createdAt' => $this->createdAt, 'createdById' => $this->createdById, 'updatedAt' => $this->updatedAt, 'updatedById' => $this->updatedById]);
     $query->andFilterWhere(['like', 'lastName', $this->lastName]);
     return $dataProvider;
 }
 public function indexInsertPreson()
 {
     $typecase = TypePeople::all();
     $case = Cases::all();
     return View('/insert_preson')->with('typecase', $typecase)->with('cases', $case);
 }
示例#4
0
 /**
  * Finds the Cases model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Cases the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Cases::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }