/** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show() { $records = Sample::where('sample_number_column', '<', 100000)->get(); //sampleパッケージのsample2.bladeに飛ぶ //compactでデータを渡す return view('sample.sample2', compact('records')); }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Sample::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, 'goodness' => $this->goodness, 'rank' => $this->rank, 'occurred' => $this->occurred]); $query->andFilterWhere(['like', 'thought', $this->thought])->andFilterWhere(['like', 'censorship', $this->censorship]); return $dataProvider; }
/** * Finds the Sample model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Sample the loaded model * @throws HttpException if the model cannot be found */ protected function findModel($id) { if (($model = Sample::findOne($id)) !== null) { return $model; } else { throw new HttpException(404, 'The requested page does not exist.'); } }