/**
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function getWhoBougthAlsoBougth(Request $request)
 {
     try {
         $recommendations = $this->integrator->getWhoViewAlsoView($request);
         return Response()->json($recommendations);
     } catch (\Exception $e) {
         throw new StoreResourceFailedException($e->getMessage());
     }
 }