/** * 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 \Illuminate\Http\Response */ public function destroy($id) { $brand = Brand::findOrFail($id); $brand->delete(); Session::flash('message', 'La marca "' . $brand->nombre . '" fue eliminada'); return \Redirect::back(); }