本文整理汇总了PHP中app\Question::get方法的典型用法代码示例。如果您正苦于以下问题:PHP Question::get方法的具体用法?PHP Question::get怎么用?PHP Question::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Question
的用法示例。
在下文中一共展示了Question::get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
public function update(Request $request, $id)
{
// dd('a//sfsaf');
if ($request->isMethod('get')) {
$this->data['roles'] = $this->getRoles();
$this->data['types'] = $this->getTypes();
$this->data['items'] = Question::get();
$this->data['old'] = Question::find($id);
if ($this->data['old']) {
return view('pages.question.update', $this->data);
} else {
return redirect('question');
}
} elseif ($request->isMethod('post')) {
$row = Question::find($id);
$row->update($request->all());
return redirect('question/detail/' . $id);
}
}
示例2: question
public function question(Request $request, $id)
{
if ($request->isMethod('get')) {
$this->data['items'] = Pivot::where('eventid', $id)->where('deleted_at', null)->get();
$this->data['questions'] = Question::get();
return view('pages.event.question', $this->data);
} else {
// dd($request->all());
$data = $request->all();
$event = Event::find($id);
if ($event) {
if (array_key_exists('delete', $data)) {
foreach ($data['delete'] as $key => $value) {
$item = Pivot::find($value);
$item->delete();
}
}
if (array_key_exists('pivot', $data)) {
foreach ($data['pivot'] as $key => $value) {
$item = new Pivot();
$item->eventid = $id;
$item->questionid = $value;
$item->save();
}
}
}
return redirect('event/detail/' . $id);
}
}