/**
  * @param $idSKu
  * @return \Dingo\Api\Http\Response
  */
 public function getDetailsPage($idSKu)
 {
     $product = $this->integrator->getDetailPage($idSKu);
     if (!$product) {
         throw new StoreResourceFailedException('Product not found');
     }
     return Response()->json($product);
 }