Commit a69f28fc by Novan Bagus Setiawan

tambah utf8_decode biar nggak error

parent ce52ec63
......@@ -39,7 +39,7 @@ class GetDataApiController extends Controller
]);
$gcon = utf8_encode($apiRequest->getBody()->getContents());
$data = unserialize($gcon);
$data = unserialize(utf8_decode($gcon));
return $data;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment