method = "post"; $this->url = config("api.syrius.request.create_order"); $this->response(); } public function getOrder(string $id) { $this->method = "get"; $this->url = config("api.syrius.request.find_order").$id; $this->response(); } }