/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     try {
         State::destroy($id);
     } catch (QueryException $ex) {
         return Redirect::back()->with('alert-warning', 'State is in Use!');
     }
     return Redirect::route($this->route . 'index')->with('alert-success', 'Successfully Deleted!');
 }