@@ -18,6 +18,7 @@ class TestController extends Controller
$to = $from;
$res = $client->get('https://apis.map.qq.com/ws/distance/v1/', ['from' => $from, 'to' => $to, 'key' => env('TECENT_POSITION_KEY')]);
$res = (string)$res->getBody();
+ dd($res);
return response()->json(['status' => 'success', 'data' => $res]);
}