Exemplo n.º 1
0
 public function deleteBid($id)
 {
     $bid = Bids::where('product_id', '=', $id);
     $bid->delete();
     return \Redirect::route('admin.products.index')->with('message', 'Bid deleted!');
 }