diff --git a/app/controller/api/store/order/StoreCart.php b/app/controller/api/store/order/StoreCart.php index b15fa47c..8151f24a 100644 --- a/app/controller/api/store/order/StoreCart.php +++ b/app/controller/api/store/order/StoreCart.php @@ -174,6 +174,8 @@ class StoreCart extends BaseController public function cartCount() { $saleType = $this->request->get('sale_type', 1); + dump($this->request->userInfo()); + halt($this->request->uid()); return app('json')->success($this->repository->getCartCount($this->request->uid()), intval($saleType)); }