/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $this->variables_variant->find($id)->delete();
     return Redirect::route('variables_variants.index');
 }