Ejemplo n.º 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($wine_id)
 {
     $result = Wine::deleteWine($wine_id);
     return Response::json($result);
 }