예제 #1
0
 protected function onGet(\Controllers\Request $input)
 {
     $id = $this->input->get('id');
     $this->data['module'] = Module::find($id);
     if (!$this->data['module']) {
         return $this->redirect($this->plugin->modules_url());
     }
     return parent::onGet($input);
 }
예제 #2
0
파일: All.php 프로젝트: Aliqhuart/puzzle-wp
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['orders'] = Order::orderBy('status', 'desc')->orderBy('created_at', 'asc')->paginate(25, ['*'], 'subpage');
     return parent::onGet($input);
 }
예제 #3
0
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['orders'] = Order::all();
     return parent::onGet($input);
 }
예제 #4
0
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['modules'] = Module::all();
     return parent::onGet($input);
 }
예제 #5
0
파일: All.php 프로젝트: Aliqhuart/puzzle-wp
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['modules'] = Module::orderBy('name')->paginate(10, ['*'], 'subpage');
     return parent::onGet($input);
 }
예제 #6
0
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['soil_types'] = Soil::all();
     return parent::onGet($input);
 }
예제 #7
0
파일: All.php 프로젝트: Aliqhuart/puzzle-wp
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['plants'] = Plant::orderBy('name')->paginate(25, ['*'], 'subpage');
     return parent::onGet($input);
 }
예제 #8
0
 protected function onGet(\Illuminate\Http\Request $input)
 {
     $this->data['soil_types'] = Soil::orderBy('name')->paginate(25, ['*'], 'subpage');
     return parent::onGet($input);
 }