/**
  * Update Products
  *
  * @param ProductsRequest $request
  * @param $id
  * @return \Illuminate\Http\RedirectResponse
  */
 public function update(ProductsRequest $request, $id)
 {
     $tags = $this->getTags($request->input('tags'));
     $product = $this->productsRepository->find($id);
     $product->tags()->sync($tags);
 }