/**
  * un-featured product.
  *
  * @param  int $id
  *
  * @return Response
  */
 public function unfeat($id)
 {
     $this->productRepository->update_feat($id, 0);
     return Redirect()->route('products');
 }