Ejemplo n.º 1
0
 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($wine_id)
 {
     $result = Wine::updateWineDetail($wine_id, $this->_getInput());
     return Response::json($result);
 }