/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     //
     Characteristic::destroy($id);
     return redirect('product/characteristics');
 }