public function closeProducts()
 {
     $products = Product::whereClosed(0)->get();
     return View::make("products/close-product", ['products' => $products]);
 }