/**
  * Remove the specified county from storage.
  *
  * @param DeleteCountyRequest $request
  *
  * @param County $county
  * @return Response
  * @throws \Exception
  */
 public function destroy(DeleteCountyRequest $request, County $county)
 {
     $this->data = $county->delete();
     return $this->handleRedirect($request, route('backend.counties.index'));
 }