예제 #1
0
 /**
  * Remove the specified savingproduct from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Savingproduct::destroy($id);
     return Redirect::route('savingproducts.index');
 }