当前位置: 首页>>代码示例>>PHP>>正文


PHP Question::get方法代码示例

本文整理汇总了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);
     }
 }
开发者ID:bilfash,项目名称:monstaff,代码行数:19,代码来源:QuestionController.php

示例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);
     }
 }
开发者ID:bilfash,项目名称:monstaff,代码行数:29,代码来源:EventController.php


注:本文中的app\Question::get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。