request->input('lng',0); $lat = $this->request->input('lat',0); return $this->success(['market' => $this->locationService->getNearestMarket($lng,$lat)]); } public function getMarketListByLocation() { $lng = $this->request->input('lng',0); $lat = $this->request->input('lat',0); return $this->success($this->locationService->getMarketListByLocation($lng,$lat)); } public function getMarketsInfo() { $ret = []; $ret['service_time']='8:30-20:00'; $ret['markets_info']=$this->locationService->getMarketsInfo(); return $this->success($ret); } }