request->getClientAddress(); return $clientIp; } public function getClientType() { $userAgent = $this->request->getServer('HTTP_USER_AGENT'); $result = new BrowserParser($userAgent); $clientType = 'desktop'; if ($result->isMobile()) { $clientType = 'mobile'; } return $clientType; } }