/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $cond = Condition::find($id);
     $cond->delete();
     //Region::destroy($id);
     return back()->with('alert-success', 'Состояние ' . $cond->condition . ' удалено');
 }