@@ -18,14 +18,4 @@ class OrderController extends BaseController
$paginate = app(OrderService::class)->paginate($params);
return $this->ok($paginate);
}
-
- public function del()
- {
- $data = $this->valid([
- "id" => "required",
- ]);
- return $this->ok();
- }