/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $product = Product::findOrFail($id); $brands = Brand::lists('nombre', 'id'); $categories = Categorie::lists('nombre', 'id'); return view('products.edit', compact(['product', 'brands', 'categories'])); }
/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { $categorie = Categorie::findOrFail($id); $categorie->delete(); Session::flash('message', 'La categoría "' . $categorie->nombre . '" fue eliminada'); return \Redirect::back(); }