예제 #1
0
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['orders'] = Order::all();
     return parent::onGet($input);
 }
예제 #2
0
파일: All.php 프로젝트: Aliqhuart/puzzle-wp
 protected function onAJAX(\Controllers\Request $input)
 {
     return Order::all()->toArray();
 }