From 9bf632d6e2ab3cec72d3986b5d77b14c36b1c634 Mon Sep 17 00:00:00 2001 From: Myckhel Date: Thu, 30 Jul 2020 00:42:10 +0100 Subject: [PATCH] fixed variation wrong request method --- src/Traits/HasQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Traits/HasQuery.php b/src/Traits/HasQuery.php index a17be83..c1035c7 100644 --- a/src/Traits/HasQuery.php +++ b/src/Traits/HasQuery.php @@ -26,6 +26,6 @@ public static function verify($params) public function variations($params) { - return self::post("service-variations", $params)->json(); + return self::get("service-variations", $params)->json(); } }