public function show($productId)
 {
     return $this->productRepository->skipPresenter(false)->find($productId);
 }
 public function index()
 {
     $products = $this->repository->skipPresenter(false)->all();
     return $products;
 }
 public function index()
 {
     return $this->repository->skipPresenter(false)->all();
 }
 public function index()
 {
     $products = $this->productRepository->skipPresenter(false)->paginate();
     return $products;
 }